My site shows a horizontal scroll bar at the bottom — it’s like I have a lot of extra space to the right of my theme — but there’s really nothing there.
Can someone tell me how I can correct this?
I am using WordPress 3.0, Thesis theme with the full-width framework.
Thanks!!!
I don’t know in what browser you get this behavior but in css you can use
overflow-x:hidden
to hide the horizontal scrollbarFirst you have this element :
with this css asigned to it:
You should try to make it : display:none;
If you can add extra CSS styles to the theme simply using wordpress, add in the following style:
If you can’t do that, but can edit the original stylesheets provided with the theme, edit the “layout.css” file (from url http://www.thedailytail.com/wp-content/themes/thesis_18/custom/layout.css?120410-40254 when I visited), somewhere around line 21 find the style for .full_width and add in the line
Let us know how you get on.