Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #111034
    tstack
    Participant

    I have one category page on my site I’d like to remove the widget sidebar from to give it a cleaner look. Can I do this to just one page or category without removing from all? Thank you!

    #111055
    Mahesh
    Keymaster

    @tstack: Please post in your site url.

    Regards,
    Mahesh

    #111107
    tstack
    Participant

    http://www.gettingcleanontheprairies.com/

    I want to remove the widget bar from the “getting clean store” category page. thanks.

    #111170
    Mahesh
    Keymaster

    @tstack: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .archive.category.category-24 #primary  {
        width: 100%;
    }
    
    .archive.category.category-24 #secondary  {
        display: none;
    }

    Regards,
    Mahesh

    #111564
    tstack
    Participant

    Thank you – that worked for the category screen, but I would also like the widgets removed from each post that is made within the category. can you provide the coding for that as well? thank you!

    #111622
    Mahesh
    Keymaster

    @tstack: Getting Clean Store is page not post, can you please give me the link of the category page and single posts?

    Regards,
    Mahesh

    #111631
    tstack
    Participant
    #111695
    Mahesh
    Keymaster

    @tstack: Thanks.
    You can use following CSS for that.

    .single-post.postid-1375 #primary  {
    	width: 100%;
    }
    
    .single-post.postid-1375 #secondary  {
    	display: none;
    }

    Alternatively, go to edit post page, then select No sidebar, Full Width option in Sidebar Layout Options in Simple Catch Options.
    Note: Do this for all posts you want.

    Regards,
    Mahesh

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Remove Widget Side Bar from Simple Catch Theme Category’ is closed to new replies.