Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
:-)
In the file "style.css", on the line 8, you have a font-size:10px that applies to every select element.
This is your problem.
If you want to keep a default font size size of 10px on the select, you should add a class to that precise select, and define another font-size for that specific class.
Be sure to put the definition of that class after the default.
The browser read the css from top to bottom, and apply the css values in that order. If you place the defaut behavior at the end of the css file, it will override the values defined before.
For example, a font size of 13px and width of 700px applied to the select looks good on my browser (FF3)
It stay in your mask, and is readable.

__________________
Only a biker knows why a dog sticks his head out the window.
Last edited by tripy; 09-18-2008 at 10:47 AM..
|