PDA

View Full Version : Tables/Design problems


Dallagnol
04-14-2001, 04:36 PM
Hello,

I am currently in the process of redesigning my web site. I finally have a rough idea of what I want, but when I tried to make it work, I got a problem.

Please check out my test here:

http://www.pinkfloydfan.net/test/test.html

Well, the problem is the table cell which contains the header is taller than it is supposed to be, so I get an extra white space under the picture. That way, the blue toolbar under it is split from the picture, which completely defeats what I'm trying to do.

I have tried messing around with the code, but couldn't figure out why that extra white space is there.

I'd appreciate any help on that matter.

Thanks,
Paulo

sitediva
04-14-2001, 04:45 PM
Firstly, try keeping your <td></td> all on one line:

<td valign="bottom">
<img src="logo3.gif" width="250" height="92">
</td>

to:

<td><img src="logo3.gif" width="250" height="92"></td>

See if that works, I'llcheck the rest of the code and let you know if I find anything else.

sitediva

sitediva
04-14-2001, 04:48 PM
Yep, putting the <td></td> on one line did it on my end. Many times, having the closing tag on another line renders a space under the image in a cell.

Hope that helped. :)

Dallagnol
04-14-2001, 04:52 PM
Hello,

That was exactly it! To think I've tried all kinds of tags, but it was all because I'm used to separating HTML
tags in different lines (I still use Notepad for editing my own HTML files, so that keeps things organized).

Thank you so much, I really appreciate your help, sitediva!!!

Yours,
Paulo

sitediva
04-14-2001, 04:59 PM
My pleasure! :) Goodluck with the rest of your site!