comment txt box color change
-
what is the css to change the txt box in my contact forms. I’m using the The Hemingway Rewritten Theme.
Cheers!The blog I need help with is: (visible only to logged in users)
-
Hi Ash,
You can change this if you edit CSS. Please go to Appearance > Customize > CSS in your Dashboard and add this:
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], textarea { background: CSS COLOR VALUE; }You can find the CSS Color Value of the color you want here:
http://www.w3schools.com/tags/ref_colorpicker.asp
Let me know if you have any questions with this!
-
Thanks Grace that worked great!
Not sure if it’s ok to ask you another question but…
What would the CSS be to change the color of my menu bar and also the color of the branding wrapper (the little box that fades away when you scroll down)
Cheers!
-
Hi there,
Sure – it’s totally ok! If you want the site branding and the menu to be the same color add this:
.`site-branding, .main-navigation {
background: CSS COLOR VALUE;
}`If you want them to be different colors:
.site-branding { background: CSS COLOR VALUE; } .main-navigation { background: CSS COLOR VALUE; }Cheers!
-
Grace you are double good!
Just wondering now how to make the drop down menu tab the same color as the menu bar?
I promise I am trying to figure this out myself using firebug but not having much luck.
-
Sure! You can do that by adding this:
.main-navigation ul ul li { background: #CCA352; }Cheers!
-
-
- The topic ‘comment txt box color change’ is closed to new replies.