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

Pop up menus/ viewing in netscape

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
When I export my pop up menu into a layer, I have trouble viewing in netscape, I have tried going into html code and adjusting the co ordinates, but when i do this netscape will work but IE wont.

Is there a solution
 
2 methods

check browser and set 2 different coordinates for ie and netscape or
Create 2 different pages and send the person to approprate one depending on the browser

regards Unicorn11
unicorn11@mailcity.com

[red]Luck is not chance, it's toil; fortune's expensive smile is earned.[red]
 
There seems to be only one co ordinate, that adjusts IE and Netscape, is there some code that you could where I could try it out.

I think another solution is the Maceromedia Motivator,
 
My be this will help

Code:
 function moveLayers() {
    var navv = navigator.appName 
	if (navv == "Netscape") {
            var leeft = 100
		document.layers['aboutus'].left = leeft;
		document.layers['stud'].left = leeft;
	} else {
            var leeft = 102
		document.all['aboutus'].style.pixelLeft = leeft;
		document.all['stud'].style.pixelLeft = leeft;
	}
}

Regards Unicorn11
unicorn11@mailcity.com

[red]Luck is not chance, it's toil; fortune's expensive smile is earned.[red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top