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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML Tables

Status
Not open for further replies.

Caden

Programmer
Dec 9, 2001
101
CA
Hey Tek-Tips quick question before I pull my hair out...

If you go to this URL, you'll see a little banner, it's is light blue, and has "Fresh, Affordable, Friendly" right justified.

The picture is exactly 750 pixels wide and 15 high...why won't the table close off that little bit of white space below? No matter what I try it isn't fitting right?


Any help would be great! thanks
Caden
 
doesn't that cell have a border? try no border and if that fails, I would simply apply the same .gif color to the cell instead of a .gif

The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he who, in the name of charity and good will, shepherds the weak through the valley of the darkness. For he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee....
 
Caden,

If you look closely at your code, you will see that you have a space after
Code:
<IMG src=&quot;Cimatec_com_files/faf.gif&quot; align=top>
and before the
Code:
</TD>
tag.

Write your code like this:

Code:
<TD><IMG src=&quot;Cimatec_com_files/faf.gif&quot; align=top></TD>

instead of:

Code:
<TD>
    <IMG src=&quot;Cimatec_com_files/faf.gif&quot; align=top>
</TD>

That should fix your problem.

-Ron

-We all play from the same deck of cards, it's how we play the hand we are dealt which makes us who we are.
 
wow i'm stupid!

Thanks Darkshadu, I had no idea that would effect it, I didn't even think.

Thanks so much!
 
Not stupid. I've done things like that many times before. It's probably happened to everyone who's spent any amount of time coding.

Sometimes you just need a fresh set of eyes to look at it. [wink]

-Ron

-We all play from the same deck of cards, it's how we play the hand we are dealt which makes us who we are.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top