Home › Support Forums › Theme Support › Pinboard › Remove Sidebar from Post type or specific Category on single post view? › Reply To: Remove Sidebar from Post type or specific Category on single post view?
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; }