What css trick would allow to have a 1200 px wide article container when possible ? http://walkingworking.com/md2014/petit-tour-du-mont-lozere/#more-300 This article layout is not very optimized for desktop display. (The mobile an tablet layout is ok)
I do suspect i should use main “col-md-12” instead of “col-md-8” but where ?
1 Answers
To resolve this issue, you can add the following code to the style.css file:
.single-post .content .main {
margin-left: 0;
width: 100%;
}
Hope this helps !
Thanks thats perfect
Please login or Register to submit your answer