Hiding a specific Category

Hello,

I have recently hidden my posts from the Slider images, now I’m wondering if there’s any way I can hide the “Slider” Category from my sidebar.

Here is my website: short-n-sweet.ca

I see that you are having some problems with your website it shows “Parse error”. When you have fixed then, please let me know and will try to help you from there.

Hi,

I fixed the parse error!

Add this code to Theme Options - Other - Custom CSS.

li.cat-item.cat-item-2 {
    display: none;
}

This code uses ID of this category and shouldn’t affect other categories, but I am not sure if ID will not change once more categories will be added. If it changes, just let me know when you are done with changes and I will give your the right code then but it will work for now.

thanks! that worked!

One more question though…how do I delete the icons on the left, beside the Categories?

You can get rid of this icon by adding this CSS to the Custom CSS field that you can find under Appearance - Theme Options - Other - Custom CSS.

#secondary .widget_categories ul li:before {
  content: none;
}

Awesome! That worked!