XF 1.3 Can you help me with this? Removing sub links in Nav Bar

3rd AnGle

Well-known member
I am trying to remove the sub links under forum tabs.. see pic
Screen-Shot-2014-10-30-at-7.37.04-PM.webp

Since the home tab already has most of those sub links as drop down, i don't want to show them..2.webp

Is there any way to remove these links without affecting the drop-down menu of each home and forum tab. Meaning: when i am in Forum tab, if i want to access those sub links i can hover around home tab and do it... similarly, when i am on home page i can hover in forum tab and access those sub links..

I am trying to clean up the menu nav bar like this...
Screen Shot 2014-10-30 at 7.47.41 PM.webp

Any help would be really appreciated.... Thanks
 
oh.. i managed this myself by hiding the links in the extra.css..

If there's anyone out there who's more illiterate in codes than me but want to achieve the same.. this is what i did
Code:
.navTabs .navTab.selected .tabLinks a
        { display: none;}
 
Top Bottom