Shoutbox

html help - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Tech Talk (/forumdisplay.php?fid=17)
+----- Thread: html help (/showthread.php?tid=26761)

html help by Stigmata on 06-05-2004 at 09:36 AM

:P any help

ok

im currently making my new site laylout

and ive got some problems

http://jwb.killercarrot.co.uk/new/index/index.php

the news bit and the far right boxes are far to low down :S

look at the source. i just cant figure out what ive done wrong :S


RE: html help by musicalmidget on 06-05-2004 at 10:21 AM

You need to add valign="top" in a couple of places.

Look for where you have this...

code:
<!-- Links and buttons end -->
           </TD>
              <td width="50%" height="100%" align="center">

...and change it to this...

code:
<!-- Links and buttons end -->
           </TD>
              <td width="50%" height="100%" align="center" valign="top">

Also, find where you have this...

code:
</TD>
              <TD width="195" height="100%">
                  <!-- Other things (polls, search enginees, news) -->

...and change it to this...

code:
</TD>
              <TD width="195" height="100%" valign="top">
                  <!-- Other things (polls, search enginees, news) -->

That should do it. :)
RE: html help by Stigmata on 06-06-2004 at 10:59 AM

thanks works a charm :)


RE: html help by musicalmidget on 06-06-2004 at 09:15 PM

No problem.  Glad it's sorted. :)