Width post along blog without gadgets

  • Unknown's avatar

    Hi there!
    How can I get rid of the widgets on the side of the webpage so that the blog post text can be centred or extended along the width? I know the first but the blog post won’t readjust its width along the website.

    Thanks!
    Cheers,
    Marta

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,

    Try to use this css;

    1. Use this css to remove widget area

    .site-content #secondary.widget-area{
      display: none;
    }

    2a. If you want to extend the content width

    @media only screen and (min-width: 50em){
      .site-main {
        margin: 0;
      }
    }

    2b. If you want to make the content centre

    @media only screen and (min-width: 50em){
      .site-main {
        width: 75%;
        margin: 0 auto;
      }
    }

    I hope it will help you.

    Thanks,
    Rizqi.

  • The topic ‘Width post along blog without gadgets’ is closed to new replies.