Checkmark for multiples users in same code
+2
skouliki
luanrox
6 posters
Page 1 of 1
Checkmark for multiples users in same code
Details of the issue
Forum address: https://roxzone.forumbrasil.net/
Forum version: ModernBB
Description
hello, good morning I have this code for ''verified'' user..
- Code:
a[href="/u1"] span strong::after {
content: url("SELO.PNG") ;
padding-left: 3px;
I would like to ask for 2 things...
I'm leaving my codes more Light, organizing and removing as much as possible...
1- would have like me to put more than 1 user in the same code without having to create another specific for that user?for example...
- Code:
[href="/u1,/u10,/u6"]
2- and I wonder if there is a way to have that text ''user verified'' when swipe over...
thank you
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
Hello
Since you are an active member of Portuguese support and the staff there helped you many times I think it is best to open this thread there
Since you are an active member of Portuguese support and the staff there helped you many times I think it is best to open this thread there
skouliki- Manager
-
Posts : 12336
Reputation : 1519
Language : English,Greek
Location : Greece
Re: Checkmark for multiples users in same code
why i can't get help from here? i'm not breaking any rules.
I noticed that here has several tutorials that in the other forum does not exist
I noticed that here has several tutorials that in the other forum does not exist
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
You are right you are not breaking any rule
I am just advising you that since your forum and language is Portuguese and you are an active member there it is best to get help there
You can of course choose to continue here no problem
I am just advising you that since your forum and language is Portuguese and you are an active member there it is best to get help there
You can of course choose to continue here no problem
skouliki- Manager
-
Posts : 12336
Reputation : 1519
Language : English,Greek
Location : Greece
Re: Checkmark for multiples users in same code
i want to continue please if you don't mind
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
the other solution iam thinking of is instead of target specific profiles /u1,/u10,/u6 to target a group
of course, you will have to create a new group and add there all the members you want
of course, you will have to create a new group and add there all the members you want
skouliki- Manager
-
Posts : 12336
Reputation : 1519
Language : English,Greek
Location : Greece
luanrox likes this post
Re: Checkmark for multiples users in same code
I thought about it, but then I would have to put more css codes, like awesome font icons... manage permissions.. and etc... I want to avoid as much as possible modify or add more code on the site
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
i do not think you can do anything else
you will have to choose the CSS or javascript way with those two targets ( profiles or group )
i will tag @TheCrow to see if he has any other solutions
you will have to choose the CSS or javascript way with those two targets ( profiles or group )
i will tag @TheCrow to see if he has any other solutions
skouliki- Manager
-
Posts : 12336
Reputation : 1519
Language : English,Greek
Location : Greece
luanrox likes this post
Re: Checkmark for multiples users in same code
i have two specifics groups for members, if i make another one jusf for a ''checkmark'' my shop will lose his value by 100%
but thanks anyway i will wait...
but thanks anyway i will wait...
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
you mean you will have appearance issues with the HTML shop page?
skouliki- Manager
-
Posts : 12336
Reputation : 1519
Language : English,Greek
Location : Greece
Re: Checkmark for multiples users in same code
no.
in my shop i have this '''verified tick'' very expensive btw..... when a member gets to ''gold member'' by 100 posts (one of my groups) is more easier to get...
and i have ''rox member'' (another group) is kinda of VIP Member..
if i make another group i'll have to restructure every ''system'' i've done
in my shop i have this '''verified tick'' very expensive btw..... when a member gets to ''gold member'' by 100 posts (one of my groups) is more easier to get...
and i have ''rox member'' (another group) is kinda of VIP Member..
if i make another group i'll have to restructure every ''system'' i've done
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
Dear @luanrox,
you can have the same css code for multiple users in this way:
you only have to add
as many times as you want, changing every time the user ID 
you can have the same css code for multiple users in this way:
- Code:
a[href="/u1"] span strong::after, a[href="/u2"] span strong::after, a[href="/u3"] span strong::after {
content: url("SELO.PNG") ;
padding-left: 3px;
you only have to add
|

Niko- Hyperactive
-
Posts : 2462
Reputation : 127
Language : English, Italian, French
Location : Italy
luanrox likes this post
Re: Checkmark for multiples users in same code
i used exactly the same code and no effect came up, only on the first one
- Code:
a[href="/u1"] span strong::after, a[href="/u2"] span strong::after, a[href="/u3"] span strong::after { content: url("SELO.PNG") ;
padding-left: 3px;
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
Niko forgot the closing }.


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.
SLGray- Administrator
-
Posts : 50149
Reputation : 3457
Language : English
Location : United States
Niko likes this post
Re: Checkmark for multiples users in same code
- Code:
}
a[href="/u1"] span strong::after, a[href="/u2"] span strong::after, a[href="/u3"] span strong::after { content: url("https://i.servimg.com/u/f66/20/16/53/20/jx7uqy10.png") ;
padding-left: 3px;
}
still not working only in the first one... maybe a brand new css code is necessary?
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
Why do you have one above the 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.
SLGray- Administrator
-
Posts : 50149
Reputation : 3457
Language : English
Location : United States
Re: Checkmark for multiples users in same code
My last css code
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
The code is this
- Code:
a[href="/u1"] span strong::after, a[href="/u2"] span strong::after, a[href="/u3"] span strong::after { content: url("https://i.servimg.com/u/f66/20/16/53/20/jx7uqy10.png") ;
padding-left: 3px;
}
Ape- Administrator
-
Posts : 17639
Reputation : 1884
Language : fluent in dork / mumbojumbo & English haha
luanrox likes this post
Re: Checkmark for multiples users in same code
the code is right...
it worked, I realized that the code only works on users who is part of some group, users without groups does not appear.
thank you guys.
solved.
it worked, I realized that the code only works on users who is part of some group, users without groups does not appear.
thank you guys.
solved.
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Niko likes this post
Re: Checkmark for multiples users in same code
@luanrox just simply remove span strong in that CSS, for example :
- Code:
a[href="/u1"] span strong::after
- Code:
a[href="/u1"]:after


SarkZKalie- Support Moderator
-
Posts : 1332
Reputation : 214
Language : English
luanrox likes this post
Re: Checkmark for multiples users in same code
is this now solved ?
If yes please press the mark solved button found at the top of the topic / thread.
Thank you.
If yes please press the mark solved button found at the top of the topic / thread.
Thank you.
Ape- Administrator
-
Posts : 17639
Reputation : 1884
Language : fluent in dork / mumbojumbo & English haha
luanrox likes this post
Re: Checkmark for multiples users in same code
Ape wrote:is this now solved ?
If yes please press the mark solved button found at the top of the topic / thread.
Thank you.
i press solved, when i restart F5 , still in progress
luanrox- New Member
- Posts : 11
Reputation : 1
Language : PT-BR
Re: Checkmark for multiples users in same code
i will mark it as solved
thank you
thank you
Problem solved & topic archived.
|
skouliki- Manager
-
Posts : 12336
Reputation : 1519
Language : English,Greek
Location : Greece
luanrox likes this post

» Checkmark
» Multiples of the Same Widget On My Forum?
» Make code for guest/logged out users
» Users in chat Code
» what is the html code to get users sig in porfile
» Multiples of the Same Widget On My Forum?
» Make code for guest/logged out users
» Users in chat Code
» what is the html code to get users sig in porfile
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum