Set the height of a drop down

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ismailc
    New Member
    • Sep 2006
    • 200

    #1

    Set the height of a drop down

    Hi,

    Is there a way of setting the height of a drop down box?
    I could manage this by setting the font-size but have to set it really big to get the height of the drop down to increase!

    Please Assist!
  • AutumnsDecay
    New Member
    • Mar 2008
    • 170

    #2
    Try adding a 'size' variable to the menu.

    Comment

    • ismailc
      New Member
      • Sep 2006
      • 200

      #3
      Thanks for the assist, but not sure how to do this:

      Can you please provide example for this dropdown height.


      Thanks

      Comment

      • David Laakso
        Recognized Expert Contributor
        • Aug 2008
        • 397

        #4
        You might consider setting a minimum-height for it (so its height will expand vertically with user discretion to scale fonts). IE/6 and down do not support min-height. The work around is to feed the lower IEs simple height. The CSS might read something like:
        Code:
        #whatever {min-height: 150px;}
        * html  #whatever {height: 150px;} /* hack for IE/6 */
        Better yet, provide clickable link in your post to the page/problem in question for a more accurate reply regarding your paticular situation at hand...

        Comment

        Working...