My logo looks fine in Firefox, but when I open my index page in IE, it's overlapping the search bar. Can that be fixed? You can see what I mean by looking here. Thanks for any advice!
My logo looks fine in Firefox, but when I open my index page in IE, it's overlapping the search bar. Can that be fixed? You can see what I mean by looking here. Thanks for any advice!
To make your header render properly in IE6 and 7, you'll need to go to the stylesheet, find #logoWrapper, and make the height value at least as big as your header image - 280px. It's 75px now.
I reset the width and the height to match my logo but no improvement.![]()
The height of #logoWrapper is still set to 75px in your stylesheet.
here's what I input:
#logoWrapper {
width:386px;
height:280px;
It hasn't changed. This is in my folder ...admin/includes/stylesheet.css
Is there somewhere else I need to change that info?
You will never get them to look the same, IE sucks.
I use this mod http://www.zen-cart.com/index.php?ma...roducts_id=493 and it works well. Copy the file included to the proper place and you can have IE-specific stylesheets. Naming convention is in the readme.
add:
#logoWrapper {
WHATEVER CHANGES YOU WANT HERE
}
to the new IE-specific stylesheet
That mod does work well, but it isn't necessary for this fix. When I look at your stylesheet in Web Developer, I still see this:
#logoWrapper{
background-image: url(../images/header_bg.jpg);
background-repeat: repeat-x;
background-color: #ffffff;
height:75px;
}
The changes wouldn't go in the admin/includes/stylesheet.css, but in includes/templates/classic/css/stylesheet.css. You should also take this opportunity to create your custom template instead of modifying Classic.
that did the trick, thanks very much for your help!