Jump to content

[SOLVED] Drop Down cuts off


emmim44

Recommended Posts

This is a bug in IE8 and earlier that has been fixed in IE9. Unfortunately, it will be a long time before IE9 is released and becomes widely adopted. In the meantime, Tomer has come up with a solution using Javascript to increase the width of the dropdown box when it is clicked on, which he has incorporated into his Attribute Order Module.

Link to comment
Share on other sites

I think in your template css file (line 1930) change:

#primary_block form#buy_block label, #primary_block form#buy_block select
{
display: block;
width: 47%;
float: left;
}



to

#primary_block form#buy_block label, #primary_block form#buy_block select
{
display: block;
float: left;
}



or something like

#primary_block form#buy_block label, #primary_block form#buy_block select
{
display: block;
width: 150px;
float: left;
}



does that work?

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...