Horizontal scroll bar – WP Thesis – WHY?

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?

Read More

I am using WordPress 3.0, Thesis theme with the full-width framework.

Thanks!!!

Related posts

Leave a Reply

3 comments

  1. I don’t know in what browser you get this behavior but in css you can use overflow-x:hidden to hide the horizontal scrollbar

    html, body {overflow-x:hidden;}
    
  2. First you have this element :

    <button value="" name="sa" type="submit" class="googlesearch-btn"></button>
    

    with this css asigned to it:

    .googlesearch-btn {
        background: none repeat scroll 0 0 transparent;
        border: medium none;
        cursor: pointer;
        height: 37px;
        left: 267px;
        position: relative;
        top: -35px;
        width: 35px;
    }
    

    You should try to make it : display:none;

  3. If you can add extra CSS styles to the theme simply using wordpress, add in the following style:

    .full_width {
        overflow:hidden;
    }
    

    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

    overflow:hidden;
    

    Let us know how you get on.