View Full Version : TD Height!
thickandthin
03-02-2003, 08:16 PM
Okay, please go to http://www.vc-source.com/gamingcentral/store.html, Okay you see how the first 3 tds where it says Navbigation then Store then Affiliates, okay now go to the next row where it says Statistics then Poll why is that row thicker and how do I make it the same size as the first row,
Thanks!
brothercake
03-02-2003, 10:41 PM
There is no such attribute as "height" for the TD element; but you could do it with CSS.
Ahem...
http://www.w3.org/TR/html401/struct/tables.html#edef-TD
You are thinking of the TABLE element, I think. ;)
thickandthin
03-03-2003, 02:58 AM
All I want to know is how to make the row smaller?
nickoli21
03-03-2003, 07:45 AM
Anytime you set the rowspan or colspan for anything, you should set it for everything. I notice that you set the rowspan above, but not below. Make sure that nothing else overlapse, otherwise it will throw everything below (and sometimes above) off.
I find that it is sometimes helpful to predefine my rows or columns. I make sure to include as many as I need. After all, it's not like there is a shortage on columns, right?
<table cellpadding="0" cellspacing="0" border="0" width="700" align="center">
<tr>
<td width="25" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="35" height="1"></td>
<td width="40" height="1"></td>
<td width="40" height="1"></td>
</tr>
This is the first part of one of my tables. It has 20 columns. Not that I show 20 columns, but I do have things that overlapse. This gives me a lot of freedom to shift things a little here and a little there.
Nick
Cybertooth Tiger
03-03-2003, 06:26 PM
It could be because...
As the center has a lot more "stuff" in it, it is creating (lets use round numbers here) say 400 height.
The content in the first column (with the navigation/Stats etc) has only enough content to fill .... say 350 height.
so the cells are streeeeeeaaaaching themselves to fill the space.
try puting a spacer.gif under the content in one of the cells and slowly increase its height and see if the sub heading reduces in height until it is the size you want.
may work!?!
Tonz
thickandthin
03-04-2003, 03:43 AM
Ok what if i want all the spacing to go in the bottom td in the Donate and Poll td, all the extra space to go there how do I do that?
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.