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.

How Can I Removing the Sidebar from a Single Content Page?

You can selectively hide the sidebar by adding a Video Widget to specific content pages. In the widget, paste the code below in the b, and it will apply only to that page. This gives you flexibility to choose where the sidebar appears.

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

After applying either method, your content should update instantly!

    • Related Articles

    • Adding Testimonials to Your Website

      Here you find instructions for adding customer endorsements to your site as text. How Do I Add Testimonials and Client Reviews to My Website? To ensure consistent formatting you can paste plain text. On Windows press: shift + control + v | On Mac ...
    • Optimizing Your Website for SEO

      Having a website that ranks well on search engines is crucial for visibility and attracting visitors. Fortunately, your website comes equipped with built-in SEO tools that allow you to configure essential meta tags, which include meta titles, ...
    • Adding Images to Your Website

      This article covers how to add images to your site and optimize images for mobile devices. Adding a Text Widget to a Page 1. Go to the Widget Manager Text Widgets allow you to add text and images to your site’s pages. From your Dashboard, go to ...
    • Adding Buttons to Your Website

      This article guides you through creating a custom button using an online design tool, uploading it to your website via a text widget, and linking it to a specific page. The result is a clickable button on your site that directs visitors to your ...
    • Google Reviews

      Google Reviews Google does not offer their own embed code for placing reviews onto websites. To get Google reviews on your website, you can use one of several third-party services that provide free options for creating a widget that can be embedded ...