"Legend" appears at my rank title
Page 1 of 1 • Share •
"Legend" appears at my rank title
Hello, I placed this code into my CSS Stylesheet:
And it made my legend bulletized. However, now I see it puts "Legjendja" at my rank title. Such as:
"Legjendja: Administrator"
It only occurs for my Administrator rank.
How do I fix this? Thanks.
- Code:
em { font-size:0 !important; }
em b { font-size:12px }
em b:after { content:" • " }
em b:last-child:after { content:"" }
b:first-child:before { content:"Legjendja : " }
And it made my legend bulletized. However, now I see it puts "Legjendja" at my rank title. Such as:
"Legjendja: Administrator"
It only occurs for my Administrator rank.
How do I fix this? Thanks.
Last edited by Ramdaman on October 18th 2014, 6:31 pm; edited 1 time in total
Re: "Legend" appears at my rank title
Hello Ramdaman,
The last rule you have :
This places Legjendja before the first <b> child element. Selecting a parent should help, try this :
The last rule you have :
- Code:
b:first-child:before { content:"Legjendja : " }
This places Legjendja before the first <b> child element. Selecting a parent should help, try this :
- Code:
em b:first-child:before { content:"Legjendja : " }
Re: "Legend" appears at my rank title
Ohhh right. Lol, funny how I overlooked that.
Thanks a bunch sir. Topic solved.
Thanks a bunch sir. Topic solved.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum