How to hide some text navbars
3 posters
Page 1 of 1
How to hide some text navbars
I want to hide group, calendar, and faq text navbar in phpbb3 forum. Please help. Thank you.
Re: How to hide some text navbars
You could add such a code.
- Code:
a.mainmenu[href="/groups"] {
display: none !important;
}
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
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;
}
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();
});
Re: How to hide some text navbars
Topic Solved & Locked |
Sanket- ForumGuru
- Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai
Similar topics
» text before hide content
» How to hide This
» Hide Admin Online Status & Hide Rank Title
» hide category + hide popup + pictures for posts
» Asking about get text and replace text in Javascript
» How to hide This
» Hide Admin Online Status & Hide Rank Title
» hide category + hide popup + pictures for posts
» Asking about get text and replace text in Javascript
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum