Hello there, I have a site named http://www.ratopati.com. The wrapper's width I defined is 1040px but it is appearing a bit lengthier in size resulting the appearance of horizontal scrollbar. Can you please check this and help me to get rid out of this problem? regards, uvishere
I have had a look at it seems that something inside of the #topmain div is wider than the containing div and causing the horizontal scroll bar. By adding overflow: hidden to the .topmain class in style.css the horizontal scroll bar no longer shows. .topmain { margin: 10px auto; border-radius: 10px; width: 1015px; overflow: hidden; } Code (markup): This is more of a hack than a fix as there is clearly something inside this div that is too wide. To identify the issue you could try keeping the .topmain class as it is and removing blocks of code until you narrow down the cause. All the best.