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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Layers

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
When using the mouse overs I have a problem in Netscape. I cannot get a layer to be read in netscape. code looks like this.

onMouseOver="document.nav.src='images/left_nav/left_nav_online.gif'; document.shopbybrand.src='images/online_catalog/shop_brand_on.gif'; showLayer('logos'); showLayer('productcatalog'); return true;"

In IE it works beautifully in Netscape I have to do this.

onMouseOver="document.shopbybrand.src='images/online_catalog/shop_brand_on.gif'; showLayer('logos'); showLayer('productcatalog'); return true;"

So I lose the look of one image. A very important image.

Any suggestions.

Thanx
 
Try using tag
Code:
<layer>
on Netscape (4.x, not 6.x), instead of
Code:
<div>
.
 
I have them in Layer tags but my problem is the only on the mouse over. Only one image src is being read, and the others ignored. I don't know if netscape can handle more than one image on a single mouse over. IE can...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top