Hi I need to hide a single category tab from the categories tabs menu in the header, but not anywhere else.
I gathered that if I could create a separate style for each category tab then I would be able to just hide the category tab I don't want visible with CSS using display:none;
So the categories would be like this
category 1 = style1
category 2 = style2
category 3 = style3
So if I wanted to his category 3 I would do something like this
#navCatTabs .style3 {
display:none;
}
Or if you want to look at it in zen code
#navCatTabs .category-top3 {
display:none;
}
So I need some way of creating a separate style for each tab. This would simply mean adding a number onto the end of 'category-top' in order.
so the tabs would be .category-top1, .category-top2, .category-top3 etc in order. The number could probably be pulled from the sort order number.
How would I go about this?
Thanks
Nick


Reply With Quote
