tags:

views:

64

answers:

2

Hi there - Please take a look at the following sites:

www.crandic.com
www.midwestsites.com

In IE7, an unwanted, horizonal scrollbar appears at the bottom of the browser for both sites. In FireFox 3.5.7, the scrollbar does not appear. Any suggestions would be GREATLY appreciated! Thanks much!

+1  A: 

You can set a CSS rule to hide any x-axis content overflow:

body {
 overflow: -moz-scrollbars-vertical;
 overflow-x: hidden;
 overflow-y: scroll;
} 
pygorex1
A: 

It's caused by this line:

font: italic bold 100% Arial, Helvetica, sans-serif; 

for .headertext in INT_CRANDIC_CSS.css

I have no idea why!

Sam Hasler
Notably, the horizontal scrollbar is not a problem in either IE8 or Firefox.
Robert Harvey
Thanks to Sam and pygorex1. I added overflow: hidden; to the .headertext class and the unwanted horizonal scrollbar disappeared in both sites! Your responses are greatly appreciated.
cawilcox