-
Author
-
December 2, 2014 at 20:56 #37360musactParticipant
Hello, I’m looking for help on what code to add to the child theme to get the ‘text field’ (I mean the color of the text when someone inputs text in a box) color to change. Right now my text I think is showing up as #bbb, accordion to my inspect element.
Thanks!PS You guys have made an amazing theme, overall it works excellently, and you did a great job of formatting text in buddy press, bbpress and woo commerce. Thank You.
December 2, 2014 at 21:11 #37361sharmstrModeratorThere’s actually several places. Search box is one color, activity is another. But for the most part they should all be #444444 by default.
Try this
COPY CODE.standard-form input[type=text] { color: #444444; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 21:25 #37362musactParticipantCool, I guess I should have said that this is for the Contact Form 7 form. The stuff I saw on the wordpress.org forums said that this code was handled by the theme.
I added that code you just provided to the child theme, and it didn’t make the change of color in the Contact Form 7 text field.December 2, 2014 at 21:32 #37363sharmstrModeratorwhoop
COPY CODE.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="password"] { color: YesYouShouldHaveMentionedThat; }
🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 21:36 #37368sharmstrModeratorooops
and you’ll need this as well
COPY CODE.wpcf7 textarea { color: #444444; }
Let me know if I missed anything else.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 21:39 #37369sharmstrModeratorMe again, I think this might be better and catch any ‘type’ of input…
COPY CODE.wpcf7 textarea, .wpcf7 input[type] { color: #444444; }
Sorry for all the answers.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
December 2, 2014 at 21:50 #37370musactParticipantWoot!
That did it.
I also added .wpcf7 input[type=”name”], .wpcf7 input[type=”subject”] to change those fields.
Thanksthanksthanks!December 2, 2014 at 21:57 #37371musactParticipantCOPY CODE1 2 3 .wpcf7 textarea, .wpcf7 input[type] { color: #444444; }
This code works perfectly on all the fields! I won’t use the other stuff.
Thanks!December 2, 2014 at 21:58 #37372sharmstrModerator*hive five*
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts
The forum ‘General questions’ is closed to new topics and replies.