Notifications
Clear all

Style [Solved] Last CSS codes that I would like help with:

9 Posts
2 Users
4 Reactions
517 Views
ZiT3K
Posts: 92
Topic starter
(@zit3k)
Estimable Member
Joined: 3 years ago

Hi!
I would like to ask for help with the following CSS codes, because unfortunately I can't find them: 🙁

1. The color of the tick. [ registration ]
2. The color of the checkbox. [ global ]
3. The color of white texts. [ global ]

Account:
4. The color of the marking circle is white.
5. The background color of the button.
6. Button text color.

Members:
7. "|" character color.

Thank you VERY VERY much in advance!

[img] [/img]
[img] [/img]
[img] [/img]

8 Replies
Chris
Posts: 3627
(@chris)
Famed Member
Joined: 3 years ago

@zit3k,

For 1)

#wpforo #wpforo-wrap .wpforo-legal-checkbox.wpflegal-email input[type=checkbox]:checked:before {
    color: #f70000 !important;
}

 

2 and 3, is an iframe, and cannot be done with CSS coding, I'm sorry but I can't help you with this two.

 

For 5) and 6).

#wpforo #wpforo-wrap .wpforo-profile-account .wpf-field-type-avatar input[type="file"]::file-selector-button{
    color: blue;
    background: lightblue;
    border: white;
}
#wpforo #wpforo-wrap .wpforo-profile-account .wpf-field-type-avatar input[type="file"]::file-selector-button:hover{
    color: green;
    background:lightgreen;
}

For 7)

#wpforo #wpforo-wrap .wpforo-members-wrap td.wpf-members-info{
    color: red;
}

 

 

2 Replies
ZiT3K
(@zit3k)
Joined: 3 years ago

Estimable Member
Posts: 92

@chris 

My recognition!
Everything works.

Did you just skip the CSS code number 4 or haven't you found a solution yet?

( All you have to do is select the selected color at point 4 [ basic BLUE ]
I would also like to be able to change it. Thank you. )

+

8. I would also be interested in the text "Default Avatar
9. I would also be interested in the text "Specify avatar by URL:"

Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3627

@zit3k,

A radio button is a native element specific to each OS/browser. There is no way to change its color/style

https://stackoverflow.com/questions/4253920/how-do-i-change-the-color-of-radio-buttons

ZiT3K
Posts: 92
Topic starter
(@zit3k)
Estimable Member
Joined: 3 years ago

Posted by: @zit3k

8. I would also be interested in the text "Default Avatar
9. I would also be interested in the text "Specify avatar by URL:"

I understand, thanks, can you help me with these?

 

3 Replies
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3627

@zit3k,

#wpforo #wpforo-wrap .wpforo-profile-account .wpf-field-type-avatar li {
    color: #ff8383!important;
}
ZiT3K
(@zit3k)
Joined: 3 years ago

Estimable Member
Posts: 92

@chris

Thanks, but can I have 3 CSS for the 3 lines SEPARATELY, please?

Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3627

@zit3k,

add :nth-child() after li, "path li:nth-child(2)"use from 1 to 3 numbers to connect the needed line.

ZiT3K
Posts: 92
Topic starter
(@zit3k)
Estimable Member
Joined: 3 years ago

Thank you very much!