PDA

View Full Version : New site design - table trauma!


G33k
09-07-02, 09:15 PM
Not sure if this is the best place to post this, but here goes...

I'm trying to get the new site design to work : http://www.digital-explosion.co.uk/test/New%20Site.html. It looks great in netscape / mozilla but it messes up in IE.

Anyone got any ideas how to fix it?

Twisted
09-07-02, 10:16 PM
try taking out all the spaces between the td and tr:eg

<TR>
<TD ROWSPAN="6" COLSPAN="5" BGCOLOR="#74889A"></TD>



<TD HEIGHT="13"><IMG SRC="GBR1.gif" WIDTH="13"></TD>
<TD COLSPAN="8" BACKGROUND="GBC.gif"><IMG SRC="T.gif" HEIGHT="100%"></TD>






</TR>

to this:
<TR><TD ROWSPAN="6" COLSPAN="5" BGCOLOR="#74889A"></TD>
<TD HEIGHT="13"><IMG SRC="GBR1.gif" WIDTH="13"></TD>
<TD COLSPAN="8" BACKGROUND="GBC.gif"><IMG SRC="T.gif" HEIGHT="100%"></TD></TR>

stompah
09-08-02, 02:26 AM
Originally posted by Twisted
try taking out all the spaces between the td and tr:eg

<TR>
<TD ROWSPAN="6" COLSPAN="5" BGCOLOR="#74889A"></TD>



<TD HEIGHT="13"><IMG SRC="GBR1.gif" WIDTH="13"></TD>
<TD COLSPAN="8" BACKGROUND="GBC.gif"><IMG SRC="T.gif" HEIGHT="100%"></TD>






</TR>

to this:
<TR><TD ROWSPAN="6" COLSPAN="5" BGCOLOR="#74889A"></TD>
<TD HEIGHT="13"><IMG SRC="GBR1.gif" WIDTH="13"></TD>
<TD COLSPAN="8" BACKGROUND="GBC.gif"><IMG SRC="T.gif" HEIGHT="100%"></TD></TR> What is the way to get a web pages code to show? I know this is off topic.


On topic the site looks decent in Opera, but where is your link to OC.com? ;)

G33k
09-08-02, 08:59 AM
Originally posted by Twisted
try taking out all the spaces between the td and tr

Tried that, but it made no difference. I think the problem's that IE isn't listening to the HEIGHT="xxx" bits for some reason. It just wants to space out EVERY cell in the table rather than JUST the row which I've left without any height information.

I'm gonna try splitting the contents and the main part into two seperate table and see if that fixes anything...