Log in

View Full Version : jquery alignment issues with IE7



ADP
01-06-2010, 01:32 AM
I am using a jquery drop-down menu and inserting it as a server-side include file in a new site design. problem is, it seems to be out of alignment when viewing in IE7 (and I am assuming earlier versions too) although it looks fine in Firefox and even IE8. I am stuck as to what could be causing this or what to try. here is the new site in question:
http://www.ssb-cpa.com/ssb-final/index.asp

any help would be appreciated!

jscheuer1
01-06-2010, 06:05 AM
Get rid of this:


<!--[if lte IE 7]>
<style type="text/css">
html .jqueryslidemenu{height: 1%;} /*Holly Hack for IE7 and below*/
</style>
<![endif]-->

from the include.

In an unrelated matter, this:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>

this:


</head>
<body>

and this:


</body>
</html>

on the include are resulting in invalid HTML code for the pages that the include is used on. They should be removed from the include.

ADP
01-06-2010, 01:58 PM
John - you are a life saver! I knew it had to be something simple but could not figure it out. thanks a million!!!