Hello everyone.
I'm working on customizing the appearance of form input fields on the profile page. I'm aiming to change the background color to the input field while its focused. I've attempted to apply CSS to change the background color of the input fields to something else upon focus. However, the color doesn't change as intended when I focus on the input fields.
Â
.wpf-field-wrap input:focus {
background-color: blue;
}
the focus color seems to be a cream color that i cannot find.
any guidance would be much appreciatedÂ
Please try this one:Â
#wpforo #wpforo-wrap .wpforo-profile input:focus { background-color: blue !important; }
Don't forget to delete the caches before checking.
one more question. this beige color in the input field seems pretty universal across the forum and seemingly some areas of your forum as well. is there a more universal setting somewhere that i could change, ive had to make 4 different !important, to just get them to change color and still have to get 1 or 2 more locations where this is happening
Â
these below are what ive had to enact, how could i find the culprit causing the required !important
Thanks!
Â
#wpforo #wpforo-wrap .wpforo-profile .wpf-field-wrap textarea:focus {
background-color: #FF1E00 !important;
}
#wpforo #wpforo-wrap .wpforo-profile .wpf-field-wrap select:focus {
background-color: #FF1E00 !important;
}
#wpforo #wpforo-wrap .wpforo-profile input:focus {
background-color: #FF1E00 !important;
}
input[name="thread[title]"]:focus {
background-color: #FF1E00 !important;Â
}