How do I change the background color of the input text box under search?
Jen
How do I change the background color of the input text box under search?
Jen
Try putting this into your CSS file:
#s {
background-color: #ffcc00;
}
Hmm that didn't work
thanks tho
The search box takes its bg from somewhere very low down in the stack. prolly #content or #rap might do it.
#menu li form input{
background-color: #ffff00;
}
http://www.mfr.f2s.com/graphicalcss/menu/index.html
That is funny. :) I tried the above css modification, and it changed the color of the search button, not the input box. :)
Back to searching the forums more.
Find this in your stylesheet:
#nav input#s {
width: 80%;
background: #XXX;
border: 1px solid #c00;
color: #DBA535;
}
replace the XXX with your values.
Ah at last, thank you. :)
This topic has been closed to new replies.