Page 1 of 1

Styling checkmark after contact form is sent

Posted: 26 Aug 2020, 07:17
by metallissimus
Hey there,

how can I change the color of the checkmark that appears after successfull submission of a contact form message?
I don't need the color change on hover, one fixed color would be sufficient.

On a side note: I think it would be nice if the default color was the primary color assigned in the skin settings.

Re: Styling checkmark after contact form is sent

Posted: 27 Aug 2020, 01:08
by mjau-mjau
Settings > Custom > Custom CSS:
Code
.form-response .fa-check {
  color: #123456 !important;
}
When using !important, the color will remain also on mouse hover.
metallissimus wrote:On a side note: I think it would be nice if the default color was the primary color assigned in the skin settings.
Thought about that, but some users have a strong red color as primary, which conveys the wrong meaning.

Re: Styling checkmark after contact form is sent

Posted: 27 Aug 2020, 07:36
by metallissimus
Thank you!
mjau-mjau wrote: Thought about that, but some users have a strong red color as primary, which conveys the wrong meaning.
That's a good point, didn't think of that.