Forum Moderators: open
If you would, please give me your suggestions to make this site look the same
[my.autoc.com...]
Playing with CSS helps a bit, but not enough...
I looked at your sample, and it appears that the black lines are images? And they are not reaching all the way to the footer?
I didn't see image tags in the code, but I did see a stray BORDER in the table tag, and a missing in the greyish column. Netscape really needs something in the cell.
Good luck.
I want to be able to deliver a site that looks the same in both browsers. Granted, we all want this, but perhaps this thorn can be removed by the combined expertise that we all have.
Appreciate all your input!
where do I go from here? argh!
btw - I know the "font" piece in the CSS section is incorrect. I was playing with making the site font look correct in NS, but had no luck. I do need to remove that.
Note rcjordan's links in that post:
Liquid Layout [dansteinman.com]. (Try resizing your browser window once there.)
Using Browser Width/Height [dansteinman.com]
I've never understood why so may people seem to think it is important...I can't imagine the average web user goes to a site, finds what they want, and then goes back with a different browser to see if it looks identical
Thanks Marshall - I didn't know the Font section in the CSS BODY{} was ignored by Netscape. I just bought a CSS book ("core CSS by Schengili-Roberts) - Hopefully, it will give me many many answers with using CSS. Take care all!
EDIT: I have tried it with Netscape 6.2 and it works except for my set column width of 200 for cell 1. That's minor though. I also have a version of this that makes column 1 a navigator and links column and column 2 a content column. Let me know if you would like that html.
<table BORDER WIDTH="100%" HEIGHT="100%" CELLSPACING="0" CELLPADDING="0">
<tr>
<td COLSPAN="2" WIDTH="100%">Header</td>
</tr>
<tr>
<td NOWRAP WIDTH="200">Cell 1 Header</td>
<td WIDTH="100%">Cell 2 Header</td>
</tr>
<tr>
<td HEIGHT="100%">Cell 1</td>
<td HEIGHT="100%">Cell 2</td>
</tr>
<tr>
<td NOWRAP WIDTH="200">Cell 1 Footer</td>
<td WIDTH="100%">Cell 2 Footer</td>
</tr>
<tr>
<td COLSPAN="2" WIDTH="100%">Footer</td>
</tr>
</table>