Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Firefox dropdownlist covering up text - what's up with this?  (Read 3307 times)

0 Members and 1 Guest are viewing this topic.

levinyakov

  • Guest
Firefox dropdownlist covering up text - what's up with this?
« on: April 18, 2007, 02:53:01 AM »
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?

Thanks

Carbon Dudeoxide

  • Global Moderator

  • Mastermind
  • Thanked: 169
    • Yes
    • Yes
    • Yes
  • Certifications: List
  • Experience: Guru
  • OS: Mac OS
Re: Firefox dropdownlist covering up text - what's up with this?
« Reply #1 on: April 18, 2007, 06:57:34 AM »
If 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.

levinyakov

  • Guest
Re: Firefox dropdownlist covering up text - what's up with this?
« Reply #2 on: April 18, 2007, 07:07:20 AM »
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!

Mindwr@ck



    Rookie
    Re: Firefox dropdownlist covering up text - what's up with this?
    « Reply #3 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?
    Mindwr@ck

    Carbon Dudeoxide

    • Global Moderator

    • Mastermind
    • Thanked: 169
      • Yes
      • Yes
      • Yes
    • Certifications: List
    • Experience: Guru
    • OS: Mac OS
    Re: Firefox dropdownlist covering up text - what's up with this?
    « Reply #4 on: April 19, 2007, 06:09:15 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 stuff

    levinyakov

    • Guest
    Re: Firefox dropdownlist covering up text - what's up with this?
    « Reply #5 on: April 19, 2007, 07:28:42 AM »
    Thanks 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.