Skip to content

Instantly share code, notes, and snippets.

@warderer
warderer / style.css
Last active September 13, 2021 21:49
[WordPress: Remove SideBar on Posts] Remove the sidebar on Wordpress posts and expand the content width to fit the removed sidebar space #wordpress #css
/* Hide Sidebar */
/*** Take out the divider line between content and sidebar ***/
#main-content .container:before {
background: none;
}
/*** Hide Sidebar ***/
#sidebar {
display:none;