Change appearance with style in forms??

windows

Guest
Hi!

I want to change the appearance on my forms with style, and I wonder how to do? I have managed to change the <input type="text"> with font-size and background-color, but is it also possible too change the <option> for pull down menues, <input type="radio"> and <input type="checkbox" ? I want to make them smaller. What are the options for this?

Looking forward for helpful answers

Nyfiken :) :confused:Please avoid cross posting.Originally posted in html forum
Experiement with what you've got already, it can't do much harm, here's some of what I use on my site.<style type="text/css">
input, textarea, select {
border: 1px #222 solid;
color: #222;
background-color: #ddd;
}
<style>
 
Back
Top