0
Can you change the colour of the search bars (you know the ones for passwords and usernames and contact forms)
3 odpowiedzi
+ 1
you can do that in HTML CSS and Javascript
1. HTML (inline style):
<input type='text' style='background-color: red;'>
2. CSS
input{background-color: blue;}
3. Javascript
document.getElementById('myInput').style.background = 'green';
0
You mean the backgrounds for the input fields?
0
Brandon Yes :D