Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamiemarsland/202ffb3019359816c8e4f28f4e460ac0 to your computer and use it in GitHub Desktop.
Save jamiemarsland/202ffb3019359816c8e4f28f4e460ac0 to your computer and use it in GitHub Desktop.
Remove sidebar from Divi
/*** Take out the divider line between content and sidebar ***/
#main-content .container:before {background: none;}
/*** Hide Sidebar ***/
#sidebar {display:none;}
/*** Expand the content area to fullwidth ***/
@media (min-width: 981px){
#left-area {
width: 100%;
padding: 23px 0px 0px !important;
float: none !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment