Blog posts in one column?

Hi,

Is it possible to show all blog posts in one column instead of two?

Hi there,

There are not direct options for this in the theme.
However you can use CSS like this to get that single column on the main blog page:

@media (min-width: 992px){
body.blog #posts-container article.col-md-6{
    width: 100% !important;
    position:relative !important;
    left:auto !important;
    top:auto !important; 
}

body.blog #posts-container article.big-post{
    width: 100% !important;
    position:relative !important;
    left:auto !important;
    top:auto !important; 
}

body.blog #posts-container article.col-md-6 .entry-thumbnail a img{
    width:100%;
}

}

add it to appearance \ customize - additional css.
Hope this helps.

Exactely what I meant! Thanks a milion!!!

I will close this case now, Feel free to contact us again if you have other questions Thanks!