I want to hide group, calendar, and faq text navbar in phpbb3 forum. Please help. Thank you.
3 posters
How to hide some text navbars
JAN2XONLINE- Forumember
- Posts : 943
Reputation : 32
Language : Tagalog, English
Location : Alberta, Canada
- Post n°1
How to hide some text navbars
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
- Post n°2
Re: How to hide some text navbars
You could add such a code.
- Code:
a.mainmenu[href="/groups"] {
display: none !important;
}
Cassius Dio- Forumember
- Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine
- Post n°3
Re: How to hide some text navbars
Hi!
For removing them all (calendar + groups + faq), you can use this one:
For removing them all (calendar + groups + faq), you can use this one:
- Code:
a.mainmenu[href="/groups"], a.mainmenu[href="/faq"], a.mainmenu[href="/calendar"]{
display: none !important;
}
JAN2XONLINE- Forumember
- Posts : 943
Reputation : 32
Language : Tagalog, English
Location : Alberta, Canada
- Post n°4
Re: How to hide some text navbars
Cassius Dio- Forumember
- Posts : 581
Reputation : 79
Language : Romanian &English
Location : Yellow Submarine
- Post n°5
Re: How to hide some text navbars
Remove the CSS codes and add to JavaScript codes management:
- Code:
$(document).ready(function(){
$('li').has('a.mainmenu[href="/faq"]').hide();
$('li').has('a.mainmenu[href="/calendar"]').hide();
$('li').has('a.mainmenu[href="/groups"]').hide();
});
JAN2XONLINE- Forumember
- Posts : 943
Reputation : 32
Language : Tagalog, English
Location : Alberta, Canada
- Post n°6
Re: How to hide some text navbars
Awesome dude! Thank you!
Locked!
Locked!
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
- Post n°7
Re: How to hide some text navbars
Topic Solved & Locked |