Gideon Babu
Gideon Babu

Reputation: 356

WP Divi theme How to make all the pages / post to full width by default

I am using Divi theme for WordPress project.

I would like to change all the page / post / product layout to full width by default instead of right side bar.

Please help how to do this. There is no default theme option available for that ont the admin side.

Thank you, -Gideon

Upvotes: 2

Views: 11171

Answers (1)

Ali
Ali

Reputation: 469

you can create layout template as fullwidth and inherit your pages from that template. To achieve that go to "Divi menu">"Divi library"

enter image description here

enter image description here

another solution is using this css code in "Divi">"Theme Options">"General">"Custom CSS":

#sidebar{display: none;}
#left-area{width: 100%;}
#main-content .container:before {
width: 0;
}

Upvotes: 1

Related Questions