WHAT'S NEW?
Loading...

[Wordpress] How to make all Divi template Blog Posts Full-Width

This is an easy way to make all of my existing blog posts full-width by default. 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;
}

.search-results .container:before {
display: none!important;
}
.search-results  #left-area {
width: 100% !important;
}

.search-no-results .container:before {
display: none!important;
}
.search-no-results  #left-area {
width: 100% !important;
}

.archive .container:before {
display: none!important;
}
.archive  #left-area {
width: 100% !important;
}

.page .container:before {
display: none!important;
}
.page #left-area {
width: 100% !important;
}

0 comments:

Post a Comment