Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

trouble with tables

Status
Not open for further replies.

Oobu

Programmer
Jan 9, 2005
8
0
0
US
I want to start off by saying I haven't written a website in a few years so my code may look a little rusty.

With that said, I am having some issues with tables that I could use help with. I am displaying some images in a table and in IE there is some weird spacing between the cells but in FF it displays as it should. Any suggestions would be helpful.

 
It looks pretty good on my screen with IE.

Do you mean under the buttons?

 
Yeah, there is a space between the button bar and the shadow image when viewed in IE.
 
Well, this is not the best answer I'm sure but you could take mash it into the same row as your buttons like this:
Code:
<HTML>
<body style='margin:0px;padding:0px'>
<table border='0' bgcolor="red" cellspacing='0' cellpadding='1' width='100%' >
<tr>
	<td align='center' valign='top' bgcolor='#DEF69B'>
		<img src='Logo1.jpg' width='286' height='164'>
	</td>
</tr>
<tr>
	<td align='center' valign='top' bgcolor='#DEF69B'>
		<img src='nav_bar.jpg' width='600' height='30'><br> <img src='shadow.jpg' width='100%' height='6'>
	</td>
</tr>
</table>
</body>
</HMTL>
 
My savior, thy name is Vragabond. Thank you very much
 
I first read about this problem about 12 years ago when I first started developing web pages, before CSS even existed. Amazing that the same problems keep cropping up.


Tracy Dryden

Meddle not in the affairs of dragons,
For you are crunchy, and good with mustard. [dragon]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top