View Full Version : ew...


brodeur
06-13-2004, 10:54 PM
look at this page:

http://www.hinhey.com/goalies/index2.html

how do i make it so that the text lines up with the inner table, so it only goes up to the end of the banner? (the dark grey outer table is for looks (a border)

if you dont understand please ask... and then.. please help!

Vanessa87
06-13-2004, 11:16 PM
You could use div layers. I hope this is the right code, heh.

<DIV Layer ID="Text" z-index="0" width="xxx" height="xxx" top="xxx" left="xxx">

Change the xxx to your digit preference.

Vanessa87
06-13-2004, 11:23 PM
Eh I checked and wrong code here's the correct one:

<div style="position: absolute; left: ##; top: ##; height: ##; width: ##;"> Text Here</div>

brodeur
06-13-2004, 11:56 PM
is there a way of specifying the width of table cells <td>?

Rosey
06-13-2004, 11:57 PM
yes just put a width tag inside the td tag.

brodeur
06-14-2004, 02:03 AM
i did that, but i want it to be in pixels, how do i do that?

salomeyasobko
06-14-2004, 02:06 AM
height="#px" width="#px"

or

style="height: #px; width: #px"

it's automatically in pixels though. but just to make sure, add the px at the end :)

brodeur
06-14-2004, 02:24 AM
is it 166#px or #166px?

Valkyrie
06-14-2004, 03:20 AM
It should be 166px

pb&j
06-14-2004, 05:13 AM
the PX is only used if you are using the STYLE method...

height="166" width="166"

or

style="height: 166px; width: 166px;"