• valisemag

    (@valisemag)


    Hi! I’d like to find a way to make my content full-width on the main page/index. How would I go about doing this?

Viewing 1 replies (of 1 total)
  • Hi

    There can be many ways to do this, but the easiest would be the css way.

    To do this add the following css in the theme’s style.css file or use a custom css plugin.

    Make sure you are using a child theme. To know more about child theme check the codex or this blog.

    .home .site-sidebar {
        display: none;
    }
    .home ..site-content {
        margin: auto;
    }

    Hope it helps!!

    Thanks

Viewing 1 replies (of 1 total)

The topic ‘Full Width Index’ is closed to new replies.