
Originally Posted by
Graham35
Hi Could you please look at my site
www.ishoppa.co.uk I am setting up and have just completed the head - loads more to do yet.
If you check with IE the logo gif covers part of the top menu buttons, it seems to work perfect in Opera and firefox.
Also if I switch on the sidebox/search/header.php it installs another full bar above the menu with the search box, but leaves a white box in the menu bar below where the search should be, I enclose a image of it.
I have switched off the fluid and set my site to 850px
I would be grateful if you have a look.
Thanks
Graham
ps.. this image is only part of the logo image, it does extend the full width of the webpage and includes the 5 menu buttons
It's because the 850px is too small. Either increase that 850 little by little till it goes away, or decrease the width of #navMain from 750px little by little till it goes away.
Since you're no longer using the fluid functionality, you can change this:
Code:
#nw {
width:850px; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
max-width:850px; /* prevents the main content from getting wider than 1300px in sites other than IE */
min-width:850px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
}
/* IE only. Controls Width of Site and Main Content*/
* html #nw {
width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "850px" : d.clientWidth > 850? "100%" : d.clientWidth < 850? "850px" : "100%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */
}
To this:
Code:
#nw {
width:850px;
}
Bookmarks