Removing the Sidebar from Content Pages

Removing the Sidebar from Content Pages


All content pages on your website come with a sidebar on the right, featuring handy widgets such as "Have Questions?" and "Find Your Perfect Property." While these elements provide quick access to useful tools, you might prefer a cleaner look without the sidebar.


How Can I Remove the Sidebar from All Content Pages?


Alert
If you already have custom CSS on the website, take care not to remove it when adding new code.
Scroll to the bottom of the field and make sure to paste the new code on a separate line.
  1. Log in to your website Dashboard.
  2. Navigate to: Appearance > Advanced Theming > Custom CSS.
  3. Add the following code to the Custom CSS field:

  1. body.inner #wsidebar_right {
  2.     display: none;
  3. }
  4. .inner .wrapper.contentarea {
  5.       width: 90%;
  6. }
  7. .inner .maincontent {
  8.     width: 100%;
  9. }

This will hide the sidebar across all pages, giving your content more room to breathe.