P > Em [Children]
3 posters
Page 1 of 1
P > Em [Children]
Is there a way to edit certain children of the legend?
First and last children work well. But I tried p > em > b:second-child and it did not work.
Thanks! #phpbb3
- Code:
p > em > b:first-child { font-size: 0 }
p > em > b:last-child { font-size: 0 }
First and last children work well. But I tried p > em > b:second-child and it did not work.
Thanks! #phpbb3
Re: P > Em [Children]
Could you please explain what you are trying to do?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: P > Em [Children]
First-Child indicates the first group in the legend (g387-forum-administrators).
Last-Child indicates the last group in the legend (g-4088-forum-trial-reviewers).
Is there any way to call the second child in the legend (g40-forumotion-managers)?
Last-Child indicates the last group in the legend (g-4088-forum-trial-reviewers).
Is there any way to call the second child in the legend (g40-forumotion-managers)?
Re: P > Em [Children]
What are you trying to do with this code?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: P > Em [Children]
Idk. Whatever I need to do. Mostly jsut hide some groups or something
- Code:
p > em > b:first-child { font-size: 0 }
p > em > b:last-child { font-size: 0 }
Re: P > Em [Children]
You can hide groups in the administration panel?
Also you can hide the group in the legend by using CSS.
Also you can hide the group in the legend by using CSS.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: P > Em [Children]
See, the thing is...
When you hide groups via the ACp, it doesnt color code users of that hidden group.
And Im trying to figure out how to do this through css
When you hide groups via the ACp, it doesnt color code users of that hidden group.
And Im trying to figure out how to do this through css
Re: P > Em [Children]
- Code:
a[href="/YOUR GROUP"]{
display: none;
}
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: P > Em [Children]
Smh. Not that code. Cuz that code makes it so all links that direct to "/g1-example" disappear. All over the forums. I just want it gone in the legend
Re: P > Em [Children]
Try this:
Replace the number '1' at whatever position the thing you want to hide is at.
I still don't see why you don't want to use SLGray's method though.
- Code:
em b:nth-of-type(1){
display:none;
}
Replace the number '1' at whatever position the thing you want to hide is at.
I still don't see why you don't want to use SLGray's method though.
Re: P > Em [Children]
Topic solved and archived
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum