Having problems with the way tables are displaying in different browsers.

jtusa

Diamond Member
Aug 28, 2004
4,188
0
71
Having problems with tables displaying correctly in netscape/mozilla/firefox when it works in IE. Someone who's willing to help please PM me.
 

jtusa

Diamond Member
Aug 28, 2004
4,188
0
71
Problem is in IE everything displays correctly, top table with logo is centered over the main table like it should be. In Netscape/Mozilla/Firefox, etc, the top table with the logo in it displays directly to the right of the main table. Make sense?

Code
--------------
<center>
<br>
<table border="0" width="700" cellspacing="0" cellpadding="0">
<img src="logo.jpg" align="right">
</table>
<br>
<table border="0" width="700" cellspacing="0" cellpadding="0">
<tr>
<td width="150" valign="top">
<table border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#000000">
<tr>
<td width="100%" height="250" valign="top" align="left">
Menu
</td>
</tr>
</table>
</td>
</center>
<td width="550" valign="top">
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="500" bgcolor="#000000">
<tr>
<td width="100%" valign="top">
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="255" valign="top">
text
</td>
<td width="245">
text
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
 

screw3d

Diamond Member
Nov 6, 2001
6,906
1
76
Looks the same to me in IE and Firefox :confused:

Edit: BTW nested tables = eww. Can you do it in another way?

Edit2: Oh I see what you mean. You forgot to close </center>
 

jtusa

Diamond Member
Aug 28, 2004
4,188
0
71
Originally posted by: screw3d
Looks the same to me in IE and Firefox :confused:

Edit: BTW nested tables = eww. Can you do it in another way?

I'm a dunce when it comes to tables, show me some examples of a better way to do it. I'm definitely open to suggestions.
 

screw3d

Diamond Member
Nov 6, 2001
6,906
1
76
Gimme a rough photochop of what you wanna do.

Ideally you should use CSS to layout your page but the learning curve is rather steep.. just PM me a link or post it here..
 

jtusa

Diamond Member
Aug 28, 2004
4,188
0
71
Originally posted by: screw3d
Gimme a rough photochop of what you wanna do.

Ideally you should use CSS to layout your page but the learning curve is rather steep.. just PM me a link or post it here..

planned layout
 

screw3d

Diamond Member
Nov 6, 2001
6,906
1
76
There you go.

You cannot make the main page dynamic using just HTML. You'll probably need SSI or some scripting language like PHP or ASP to "include" some file so that it'll just load the main page.

Otherwise you will have to copy and paste the rest of the page.. well I suppose you can use frames to do that but that's icky too

edit: bleh attach code

here's a link
 

jtusa

Diamond Member
Aug 28, 2004
4,188
0
71
Originally posted by: screw3d
There you go.

You cannot make the main page dynamic using just HTML. You'll probably need SSI or some scripting language like PHP or ASP to "include" some file so that it'll just load the main page.

Otherwise you will have to copy and paste the rest of the page.. well I suppose you can use frames to do that but that's icky too

edit: bleh attach code

here's a link

Thanks a bunch! I'll mess around with that and see what I can do.

Yeah, I'm using PHP for the main part, and I detest frames so they are definitely out of the question.
 

screw3d

Diamond Member
Nov 6, 2001
6,906
1
76
Originally posted by: jtusa4
Originally posted by: screw3d
There you go.

You cannot make the main page dynamic using just HTML. You'll probably need SSI or some scripting language like PHP or ASP to "include" some file so that it'll just load the main page.

Otherwise you will have to copy and paste the rest of the page.. well I suppose you can use frames to do that but that's icky too

edit: bleh attach code

here's a link

Thanks a bunch! I'll mess around with that and see what I can do.

Yeah, I'm using PHP for the main part, and I detest frames so they are definitely out of the question.

Good to hear that! :D

Good luck :)