Reply To: Remove Sidebar from Post type or specific Category on single post view?

#22984
Daniel Tara
Keymaster

Here’s a quick hack to hide the sidebar on single posts. Go to Appearance → Theme Options → Layout and enter the following under Custom CSS:

.single #wrapper {
    max-width: 760px;
}

.single #content {
    width: 100%;
}

.single #sidebar {
    display: none;
}