
Originally Posted by
johnga
Hi, I have been trying to resolve an issue for several weeks. I am getting many complaints from customers about my web site not displaying properly in IE. Since i am a Mac user, I have no way of knowing what is going wrong. Can anyone take a look at the site and suggest a solution? Thanks very much
www.goldenapplels.com/ZcartGA/
First thing I would do, is fix the head portion of your site. You have css there, I would move that to a file in includes/templates/YOUR_TEMPLATE/css/. All css belongs in the <head> portion of the website, you have it within the <body>.
also, you have a second </head> up there.
If you view the source of your site, you'll see what I mean, but here is the chunk I'm referring to:
Code:
<style type="text/css">
<!--
#divnavbarz a:hover {
font-size: 12px;
color: #FFFFFF;
background-color: #FF9801;
text-decoration: none;
}
#divnavbarz {
background-image: url(../assets/banner2008_02_2.gif);
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
text-decoration: none;
text-align: center;
}
#divnavbarz a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
text-decoration: none;
}
#navbarz {
text-align: right;
}
-->
</style>
</head>
<link href="../css/stylesheet.css" rel="stylesheet" type="text/css" />
<body>
<div align="center">
<style type="text/css">
<!--
body {
background-color: #FFFFFF;
}
-->
</style>
</div>
All of that needs to be gone.
Don't know if that's your issue, but fixing it will get you a step closer.
Bookmarks