How to show post 1 level of sub category on mega menu

Posted in: Newspaper
Post count: 10

Like :
Category 1
-My sub cate level 1
– -My sub cate level 2

How to show only “My sub cate level 1” on mega menu?

thanks.

Post count: 20688

Hi,

The mega-menu will show all the sub-categories of the parent category set in it.
So for example these sub-categories of the parent category Fashion
http://prntscr.com/mf6scu will appear one below the other – http://prntscr.com/mf6rs5

I could try and give you a CSS solution yo hide the desired category from the mega-menu. Post a link to the website and mention which category you want removed from the mega-menu sub-categories.

Thanks

Post count: 10

All subcategories have the same class. Please tell me the way to write css. I can do it by myself.

Post count: 20688

You could use a CSS that will hide the sub-category by the position number. For example the Style hunter is number 4 in the list of sub-categories
http://prntscr.com/mgdw7p
The code to hide it is like this – http://prntscr.com/mgdye0
Code used in example here

.menu-item-291 .block-mega-child-cats a:nth-child(4) {
display:none;
}

I used the ID of the menu-item so that the code will apply only to that menu item
http://prntscr.com/mgdz7v

Post count: 10

thank you so much.

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.