Hello everyone. I'm building a form and the text color for the page is white. The page uses CSS. and the style for the text is white. when I open the page the state select box and the submit and reset buttons the text on them is white. I have tried to edit this in the design view on dreamweaver and there is not an option. is there a way I can change the text color? Here is the code for the state selector if anybody wants to see it. I deleted most of the states out of the code so this is not so long. Thank you. <select name="State:" id="State:"> <option value="AL">AL</option> <option value="AK">AK</option> <option value="AZ">AZ</option> <option value="WI">WI</option> <option value="WY">WY</option> </select>
I'm not having any luck figuring that out. I need to make the text in that box black only. not on the rest of the page. Do you know if there is a code I can put with the color to that box. I dont know much about css. and I cant figure out how to add a color to the styles
select { background-color:#000000 } indicates that only the select boxes on the website will have a black background color.
This may help.. <style> select{ color: #000; } input{ color: #000; } submit{ color: #000; } </style> HTML:
Here is a basic example: <html> <head> <title>Your Page</title> <style> select{ color: #000; background: #fff; } input{ color: #000; background: #fff; } submit{ color: #000; } </style> </head> <body> Put your form data here, such as <form action="example.html" method="POST"> Name: <input type="text" name="name" /> <br /><br /> State: <select name="state" > <option value="AL">AL</option> <option value="AK">AK</option> <option value="AZ">AZ</option> <option value="WI">WI</option> <option value="WY">WY</option> </select> <input type="submit" value="Submit" /> </form> </body> </html> HTML: I hope this helps you
lol, yes, a nice +1 post count, but I think he needed a little more guidance/support, hence why I provided a more indepth answer
Thank you all for your input. I figured it out. I had changed the main text color in the css file to white. so i changed it back and just changed the text color manually. Although after that I read these post and figured out now how to add a new style. Thanks everyone.