How do I increase the width of content on Silvio theme using CSS

  • How do I increase the width of content on Silvio theme using CSS

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

  • Hi drsreekarh,
    thanks for using Silvio :)

    You can add this CSS:

    .single .hentry > .container {
        width: 100% !important;
    }
    .single .hentry > .container > .row > .col-xs-12 {
        width: 100% !important;
    }
    .single .hentry .entry-content {
        margin: 0 auto;
        max-width: 800px;
    }

    the important number is the max-width value, when you set the maximum width. If screen are smaller, then it gets the whole width of screen.

    Hope this helps :)
    Ricardo P. from SIloCreativo

  • The topic ‘How do I increase the width of content on Silvio theme using CSS’ is closed to new replies.