Support » Themes and Templates » Twenty Ten page width

  • How do you change it so the content fits the full width of the page, or at least most of the width, when using the single column layout?

    The default display is hideous!
    Seriously, could they possibly make the left and right margins any wider?

Viewing 4 replies - 1 through 4 (of 4 total)
  • It is best to make changes in a child theme.
    You can do it in style.css its wrapper

    I have changed on of the website here

    this the changes I made You can the rounded corners if you want
    #wrapper {
    margin:20px 20px 20px 20px;
    background: #FFEFD5;
    padding: 0 20px;
    /* this?: */
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;

    }
    #container{
    float: left;
    width: 78%;

    }
    #primary{
    float: right;
    width: 20%;
    }

    Thread Starter grunzster

    (@grunzster)

    You misunderstood me.

    I don’t want it to fit the width of the browser window.
    I just want the text fit the width of the current container size, without the giant margin on both sides.

    Thread Starter grunzster

    (@grunzster)

    Found it! This is what I meant.

    .one-column #content {
    margin: 0 auto;
    width: 900px;
    }

    Exactly my question and thanks for the code

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Twenty Ten page width’ is closed to new replies.