Side Bar

  • Unknown's avatar

    How to remove a side bar for just one page. I am trying to remove a side bar from one of pages so i can create a slide show extending over it. Is there anyway you could help me with this. I’ve checked the forums and none of them have been able to correctly show me how to removed the side bar. Thank you in advance.

  • Unknown's avatar

    Hi there,

    You can use your Custom Design upgrade to add custom CSS that will remove the sidebar for one page. However, the exact code depends on the page where you want to do this.

    Each page in your blog has a specific ID number. You can use the instructions on this page to find the page ID: http://en.support.wordpress.com/pages/#how-to-find-the-page-id

    Once you have the page ID, you can add the following CSS code in the CSS editor under Appearance > Customize > CSS in your dashboard. This will remove the sidebar and make the page full width in the Parament theme:

    .page-id-1234 #main {
    width: 950px;
    }
    
    .page-id-1234 #sidebar {
    display:none;
    }

    Replace the number “1234” above with the page ID for the page on your blog, and it should work for you. If you have any questions about how to do this on your blog, please give me a link to the page where you want to do this and I’ll be happy to help further!

  • The topic ‘Side Bar’ is closed to new replies.