• I am trying to adjust the layout of a test site, to allow the content on both posts and pages to expand all the way to the right. While tinkering with my Child theme code (I am relatively new to this extensive editing of WordPress themes and child themes in general), I have somehow created an issue where the pages have the bottom scroll bar, even though the content itself doesn’t extend out that far. The actual pages not only don’t extend all the way out, they also have the bottom scroll bar as well. The site is viewable here: https://aquathistle.com/aircomfort/. My main goal is just to get the text in the #content area to extend all the way to the right with just about a 5px margin there for readability.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I have somehow created an issue where the pages have the bottom scroll bar,

    Try adding this to your Child Theme

    #access {
     padding-left: 0;
    }

    Or try the suggestion below:

    #access {
        background: none repeat scroll 0 0 #CC3333;
        display: block;
        float: left;
        margin-top: 0;
        padding-left: 80px;
        width: 100%;
    }

    It’s the width: 100%;.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘2011 Child Issues’ is closed to new replies.