How to Make Divi Blog Posts Full-Width by Default

by Nov 17, 2015Efficiency, For VA's, Tips & Tricks6 comments

Since I’ve recently switched to the Divi theme myself, I wanted an easy way to make all of my existing blog posts full-width instead of with the old sidebar. At first it looked like I’d have to change each one to full-width manually, bummer! But then I came across this quick solution:

All you have to do is add this code to your Theme Options in the custom css section:

.single-post .container:before {
display: none!important;
}

.single-post #left-area {
width: 100% !important;
}

That’s it! Super duper!