1.

Solve : Firefox dropdownlist covering up text - what's up with this??

Answer»

Here is an image of my problem:



In the standard rendering of the asp:DROPDOWNLIST the arrow covers the text, how do you fix that?

ThanksIf you have a mouse with the wheel, HOLD CTRL and move the wheel and you can change the text size for the browser. Maybe that will work.Thats a pretty cool trick, I could change the font-size in IE7 as well.

But it didn't stop the text from being buried by the arrow.

Plus I'm doing the CSS on this page and if you know of any way I can set the boxes bigger without USING the width attribute that would be great!Could you post the section of CSS that directly affects the drop down selectors so I can take a look at it?Quote from: [emailprotected] on APRIL 19, 2007, 05:59:21 AM

Could you post the section of CSS that directly affects the drop down selectors so I can take a look at it?
Yeah, then we might be able to help you change the box size and stuffThanks for the help,

I appear to have an answer I got from davidcdalton, tell me what you think.

I was using

*
{
padding: 0em;
margin: 0em;
}

In the css. If I put a style on the select, it didnt help, but if I did this:

.fulldate option
{
padding-right: .6em;
}

.fulldate being the class in the select STATEMENT all appears to be good.


Discussion

No Comment Found