User login

Reply to comment

Change the color of select box entries

Did you know that is very easy to change the color of select box entries or their font size? All you need to do is to apply the magic of CSS.

In your stylesheet whether it is external or internal, write the following entry:

select {
color: blue;
font-size:1.4em;
}

This would make your select box options appear blue and 20% larger than your regular font. See an example below:

Reply

The content of this field is kept private and will not be shown publicly.