How change fields helptext style django?

Issue

I want change text color etc of help_text in fields models.

I see in html that there is helptext class:
<span class="helptext">Sentenses</span>
so I try in my css file:

.helptext {
        color: #bd512f;
}

and it dont do changes.
Is there collision with bootstrap?

Solution

I found the answer by code:

.helptext {
        color: #bd512f !Important;
}

Answered By – Agora99

This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0

Leave a Reply

(*) Required, Your email will not be published