How to delete sidebar withing categories

Home Forums Jevelin Theme How to delete sidebar withing categories

Home Forums Jevelin Theme How to delete sidebar withing categories

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
  • siminator
    Participant

    Sorry to post so many questions but I’m still learning about website design.

     

    I decided I don’t want to have a sidebar at all. My homepage doesn’t have it, my blog posts don’t have it. But when I click on any category, there is still a right sidebar. How can I get rid of it?

     

    Thank you very much for your help!

    Solution for this topic

    Hi @siminator,

     

    I hope you are well today and thank you for your question.

     

    You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .archive.category #sidebar {
        display: none;
    }
    
    .archive.category div#content {
        padding-right: 0;
        width: 100%;
    }

     

    Best regards,
    Shufflehound team

    siminator
    Participant

    It works! Thank you!

     

    Just one more question. How can I achieve to have 3 articles in a row withing each category? Just like on my homepage.

    • This reply was modified 4 years, 10 months ago by siminator.

    There aren’t any settings to achieve it.

     

    You can try achieving this using Yellow Pencil editor as described in the below page.

     

    https://support.shufflehound.com/how-to-change-almost-any-element/

    siminator
    Participant

    Okay thank you.

     

    And what about that white space on the right side when I removed sidebar? How can I get rid of it?

    If you are talking about the white space displayed in the category page after removing the sidebar then the above shared CSS code will remove it by expanding content width.

Viewing 6 posts - 1 through 6 (of 6 total)