Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

background images in tables vs. netscape 3

Status
Not open for further replies.

doz

Programmer
Aug 6, 2001
1
0
0
GB
is there an extension or trick that tackles this problem,
my nav-bar has a background image with a table on top of it,
looks great in IE but terrible in Netscape?!
 
netscape tiles background images

there is nothing that can be done of that
putting that back ground insted

it would be good if i could have a look at it

regards [sig]<p>Unicorn11<br><a href=mailto:abhishek@tripmedia.com>abhishek@tripmedia.com</a><br><a href= > </a><br>ENJOY !!!!!!!!!![/sig]
 
You can use a CSS style to avoid the tiling of the image. I do it and it works in both IE & Netscape. Below is the CSS style that I use:

<style type=&quot;text/css&quot;>
.bkgrnd { background-image: url(bkgrnd.jpg); background-repeat: no-repeat; background-attachment: fixed; background-position: right top; background-color: #000000 }
-->
</style>
 
I hope I didn't misunderstand the problem, but this macromedia tutorial might help. I found it invaluable.


&quot;A background image in a multi-celled table tiles in the background of the table in Internet Explorer but tiles in each cell of the table in Netscape.&quot;

and how to solve it :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top