I have a Wordpress CMS website where most labels are needed to be white. So the theme includes the below styles per form labels.
.login label {
color: #fff;
font-size: 14px;
}
This above style is populated from within /wp-login.php file -- the style itself is located in the login.min.css (which is included directly within wp-login.php)
I need to override this ONLY for the forget password screen.
Luckily there are custom ID selectors for the two labels I need to be black in this instance. #pass1 #pass2
My problem is, I have NO ACCESS to /wp-login.php and login.min.css -- I have tried adding !important and declaring these two selectors within header.php but they were not read.
I need to somehow add; with current permission situation.
#pass1 { color: #000 !important; }
#pass2 { color: #000 !important; }
Could I use jQuery from header.php or footer.php to append the style? Would it be read?