Forum Moderators: phranque

Message Too Old, No Replies

Site messed up in NS 4.7

         

RussellC

8:51 pm on Feb 15, 2002 (gmt 0)

10+ Year Member



Can anyone help me out and tell me why my site gets so messed up in Netscape 4.7? The baground that I have on the page shows up in all of the table and when I scroll the text blurs also. I can't post the URL in here can I?

-Russell

crash

9:13 pm on Feb 15, 2002 (gmt 0)

10+ Year Member



"I can't post the URL in here can I? "
put it in your profile ;)

RussellC

9:17 pm on Feb 15, 2002 (gmt 0)

10+ Year Member



ok it is now.

thanks

tedster

9:46 pm on Feb 15, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



1. Netscape 4 has trouble with table cell backgrounds.
2. Your main table has width=102%, which is not a valid number. That also could be confusing the browser (but it's more likely to be #1.)

Try changing your code so the background image is the TABLE background for the nested table, rather than the table cell.

If that doesn't fix it, you might also experiment with creating large enough background image so you don't need the no-repeat. Then you can just declare the table background image without the style tag. Version 4 browsers had pretty rough support for CSS.

RussellC

9:53 pm on Feb 15, 2002 (gmt 0)

10+ Year Member



WOW thanks for the input.

I changed to 102% I dunno how I messed that one up.

<Try changing your code so the background image is the TABLE background for the nested table, rather than the table cell. >

how do I do this?

thanks,
Russell

tedster

9:58 pm on Feb 15, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Right now your code has this general structure:

<table>
<tr>
<td style:background info>

<table><tr><td></td></tr></table>

</td>
</table

Change it to:

<table>
<tr>
<td>

<table style:background info><tr><td></td></tr></table>

</td>
</table

RussellC

10:01 pm on Feb 15, 2002 (gmt 0)

10+ Year Member



Ohhh ok I get it...Thanks for the help again. I will try it.

-Russell

RussellC

2:36 pm on Feb 18, 2002 (gmt 0)

10+ Year Member



Well, I did your suggestion and the site works normally now but the background cannot be seen in NS 4.7. This isn't a huge issue but I would still like it to be seen. Anyways if you would like to take a look at the code, it is on /indextest.html of my site. Thanks for the help.

-Russell