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.

Read More

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

Thank you,
-Gideon

Related posts

1 comment

  1. 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;
    }

Comments are closed.