Theme Homepage

Hello,

I have a question regarding Sparkling theme :
Is it possible to remove the sidebar altogether on the homepage (and thus widen the main content), or to remove it on the blog post (not the pages) ?
If not, is there a way to reduce the sidebar and widen the main content ?

Thank for the support, the theme is really beautiful and easy to understand !

This code will help you to get rid of sidebar and center post content for blog page and single post view but it shouldn’t affect pages where sidebar will be still in place.

.home #secondary,
.single #secondary {
    display: none;
}
.home #content .col-md-8,
.single #content .col-md-8 {
    float: none !important;
    margin: auto;
}

This will use the same width for posts, so image will not going to be stretched and distorted.

Great ! Thank you so much Aigars for your answer !! :slight_smile: