I have a main menu system that when an option is clicked, a submenu appears with further options.
My new menu has a small arrow on the end which is supposed to overlap the submenu that appears. However, due to the different ways that browsers interpret these kinds of things, I'm having trouble getting certain browsers to do as I say.
I've included an image of the problem below:
The page its on is:
http://www.lawsloop.com/test/
I link to the site because I think to understand the problem properly, the CSS and Javascript and the rest of it need to be taken into account.
Works in IE but not FF: <div style="display:none;position:relative;float:right; width:21px;height:9px;margin-top:-5px;" id="arrow"><img src="arrow.gif" alt="arrow" onClick="closesub();" title=""></div>
Works in FF but not IE:
<div style="display:none;position:relative;float:right; width:21px;height:9px;margin-top:-5px;" id="arrow"><img src="arrow.gif" alt="arrow" onClick="closesub();" title="" style="margin-top:-5px;"></div>
Last edited by LawsLoop; 06-17-2009 at 10:58 AM..
|