Hi, i am building a site and have just run into a weird problem. In Firefox when the page loads and then anytime you hover over the menu, the scrolling text i have flickers. It's fine in IE. However in IE the images on the left are on the same line as the logo. what am i missing here? By the way, the navigation is referneced by php include and the code is as follows
the url is http://www.aliassmithandjones/com/testCode:<div id="nav"> <ul> <li<?php if ($thisPage=="Home Page") echo " class=\"spacer\""; ?>><a href="http://www.aliassmithandjones.com/test/federal/">Federal Services</a> <ul<?php if ($thisPage=="Federal") { echo " class=\"open\""; } else{ echo " class=\"closed\"";} ?>> <li><a href="hsse.php">Health, Safety, Security & Environmental (HSSE)</a></li> <li><a href="psrm.php">Process Safety/Risk Management</a></li> <li><a href="program.php">Program Management</a></li> <li><a href="tech_support.php">Technical & Logistical Support</a></li> </ul> </li> <li<?php if ($thisPage=="Home Page") echo " class=\"spacer\""; ?>><a href="http://www.aliassmithandjones.com/test/commercial/">Commercial Services</a> <ul<?php if ($thisPage=="Commercial") { echo " class=\"open\""; } else{ echo " class=\"closed\"";} ?>> <li><a href="hse.php">HSE Management Systems</a></li> <li><a href="integ_mngmt.php">Integrity Management</a></li> <li><a href="policy.php">Policy & Procedure Development</a></li> <li><a href="pfed.php">Process Facility Engineering & Design</a></li> <li><a href="psrm.php">Process Safety & Risk Management</a></li> <li><a href="tech_info.php">Technical Information</a></li> </ul> </li> <li<?php if ($thisPage=="Home Page") echo " class=\"spacer\""; ?>><a href="http://www.aliassmithandjones.com/test/corporate/">Corporate Information</a> <ul<?php if ($thisPage=="Corporate") { echo " class=\"open\""; } else{ echo " class=\"closed\"";} ?>> <li><a href="contact.php">Contact Information</a></li> <li><a href="links.php">Corporate Links</a></li> <li><a href="employee.php">Employee Life</a></li> <li><a href="employment.php">Employment</a></li> <li><a href="press.php">Press</a></li> </ul> </li> </ul> </div>
Any help is greatly appreciated!!






Bookmarks