changing asterisk color?

Ask the community for help and support.
Post Reply
Dnj1964
Posts: 58
Joined: Fri Nov 06, 2020 8:27 pm
Has thanked: 8 times

changing asterisk color?

Post by Dnj1964 »

Anyone tell me what to add to user.css to change the asterisk color.

<span class="form-control-feedback text-danger">
<i class="fas fa-asterisk">

Thanks
User avatar
Kofod95
VIP Member
VIP Member
Posts: 605
Joined: Sat Feb 06, 2021 7:38 pm
Has thanked: 80 times
Been thanked: 141 times

Re: changing asterisk color?

Post by Kofod95 »

As I remember it, the color comes from text-danger and has an !important;, so you need to target text-danger with an !important added. What you use to limit it to that asteriks alone, is up to you - I would probably go for the div just before the lines you have copied, just to make sure only to change that one

//Daniel
I'm not smart, but sometimes even a blind chicken can find a corn.
Here are a lot of corns: Phoenix user guide
heatherbell
VIP Member
VIP Member
Posts: 1996
Joined: Mon Oct 07, 2019 4:39 am
Has thanked: 26 times
Been thanked: 175 times

Re: changing asterisk color?

Post by heatherbell »

Dnj1964 wrote: Fri Sep 24, 2021 7:33 pm Anyone tell me what to add to user.css to change the asterisk color.

<span class="form-control-feedback text-danger">
<i class="fas fa-asterisk">

Thanks

Code: Select all

.form-control-feedback.text-danger .fa-asterisk{ /* target element with class fa-asterisk that is descendant (could be child or grand-child) of element with class form-control-feedback and text-danger */
    color: blue !important; /* set font color */
}
Post Reply