I'm at a loss as why the rollover image on my menu see: http://www.tmpt.co.uk/location.html
works beautifully on my Mac browsers but on IE on my PC it doesn't locate the rollover image and replaces it with a red X.
I've tried to put in the full path to the image location in the code below but it makes no difference.
My code is:
Code: Select all
<SCRIPT TYPE="text/javascript">
fixMozillaZIndex=true; //Fixes Z-Index problem with Mozilla browsers but causes odd scrolling problem, toggle to see if it helps
_menuCloseDelay=500;
_menuOpenDelay=150;
_subOffsetTop=2;
_subOffsetLeft=-2;
with(submenuStyle=new mm_style()){
fontfamily="Verdana, Tahoma, Arial";
fontsize="8pt";
fontweight="none";
headercolor="#000000";
offcolor="#4B8BCA";
oncolor="#FCC14C";
padding=5;
pagecolor="black";
subimage="11x9_dotted_green.gif";
subimagepadding=8;
}
with(menuStyle=new mm_style()){
styleid=1;
align="right";
ondecoration='underline';
fontfamily="Verdana, Tahoma, Arial";
fontsize="8pt";
fontweight="none";
headerbgcolor="#FFFFFF";
headercolor="#000000";
image="location.gif";
imageposition="right";
offcolor="#4B8BCA";
oncolor="#FCC14C";
overimage="location_on.gif";
pagecolor="black";
}
with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
orientation="vertical";
top=200;
left=100;
screenposition="right";
position="relative";
style=menuStyle;
aI("text=HOMEPAGE:;url=http://www.tmpt.co.uk/index.html;");
aI("showmenu=SPACE;text= ;");
aI("showmenu=Profile;text=About us:;url=http://www.tmpt.co.uk/profile.html;");
aI("showmenu=Location;text=Location;url=http://www.tmpt.co.uk/location.html;");
aI("showmenu=Investing for the future;text=Investing;url=http://www.tmpt.co.uk/investing.html;");
aI("showmenu=The Build Specifications;text=Specifications;url=http://www.tmpt.co.uk/specs.html;");
aI("showmenu=The Build Phases;text=Build Phases;url=http://www.tmpt.co.uk/phases.html;");
aI("showmenu=The Building a Community;text=Your Community;url=http://www.tmpt.co.uk/community.html;");
aI("showmenu=Try before you buy;text=Try before you buy;url=http://www.tmpt.co.uk/trybuy.php;");
aI("showmenu=Contact Us;text=Contact Us;url=http://www.tmpt.co.uk/contact.html;");
aI("showmenu=SPACE;text= ;");
}
drawMenus();
</SCRIPT>
Nick