Quote:
Originally Posted by Vick98
I looked at the previous pages and found the fix. Now I need help changing the color of the input text box and search box. Both backgrounds are white and I would like to change it to a dark background. Thank you in advance.
|
try adding this to your additional.css
Code:
.textbox, textarea, select {
background-color: #1A1A1A;
border: 1px solid #5B5B5B;
color: #CCCCCC;
}
change #1A1A1A and #5B5B5B
to your color choice