Hi, I want to change this for my forum but idk how. Is there any CSS code or something?
Screenshot: http://prntscr.com/8bfgpv
Screenshot: http://prntscr.com/8bfgpv
Last edited by Ghost on September 1st 2015, 7:47 pm; edited 1 time in total
a.mainmenu[href="/privmsg?folder=inbox"] { font-size:0 }
a.mainmenu[href="/privmsg?folder=inbox"]:after {
font-size:11px;
content:"Private Messages";
}
Ghost wrote:I want to change it to how many PM's you've gotten. Like if you have 0 then it will say: PM's (0) and then when you receive a pm it'll have a number and green color. Example: PM's(1)
Lol thx Klemen, and is there a way to change these two also? With CSS? To just members and groups?Klemen wrote:Ghost wrote:I want to change it to how many PM's you've gotten. Like if you have 0 then it will say: PM's (0) and then when you receive a pm it'll have a number and green color. Example: PM's(1)
You can do it with javascript. But using javascript on the navbar seems to affect the mobile version of your forum in a bad way, where your navbar completely dissapears. So to my knowledge, there's no way, unless you have no plans on using the mobile version.
Ghost wrote:Lol thx Klemen, and is there a way to change these two also? With CSS? To just members and groups?
Screenshot:http://prntscr.com/8bg033
a.mainmenu[href="/memberlist"] { font-size:0 }
a.mainmenu[href="/memberlist"]:after {
font-size:11px;
content:"Members";
}
a.mainmenu[href="/groups"] { font-size:0 }
a.mainmenu[href="/groups"]:after {
font-size:11px;
content:"Groups";
}
Ghost wrote:When I posted the code in my stylesheet it removed "Private Messages".
It worked. Thanks @Ange Tuteur, @SLGray and @KlemenKlemen wrote:Ghost wrote:When I posted the code in my stylesheet it removed "Private Messages".
I think you accidentaly removed a closing bracket '}' after '"Private Messages";'