I've got a new page I'm putting together with rollover link images.
My code is like this :
CODE
<a href="http://www.language-global.com/new-index.php">
<div id='button4733' style='height: 49; width: 209;
background-image: url(http://www.language-global.com/sitedecor/button42580941.gif); background-position: 0px 0px; '
onmouseover = 'document.getElementById("button4733").style.backgroundPosition = "-209px 0px"; '
onmouseout = 'document.getElementById("button4733").style.backgroundPosition = "0px 0px"; '>
</div>
</a>
<div id='button4733' style='height: 49; width: 209;
background-image: url(http://www.language-global.com/sitedecor/button42580941.gif); background-position: 0px 0px; '
onmouseover = 'document.getElementById("button4733").style.backgroundPosition = "-209px 0px"; '
onmouseout = 'document.getElementById("button4733").style.backgroundPosition = "0px 0px"; '>
</div>
</a>
In Firefox, absolutely nothing displays - the screen is blank.
In IE, it works perfectly, though active contents has to be enabled.
The strange thing is, I downloaded the buttons and the code from a web-site which helps people make buttons, etc.. On their site, the button works fine in Firefox. I've checked their source code and it is identical to mine. I'm really scratching my head here - does anyone know what I am doing wrong?
I've put the page up on the net in case anyone wants to check it for themselves - http://www.language-global.com/new_index.html - this one works fine, and the php version doesn't work, even in IE : http://www.language-global.com.new_index.php
Why doesn't firefox display the rollover link buttons?
Why doesn't the php version of the page work in either browser?