VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: Funtasy on November 19, 2015, 11:50:08 AM

Title: Special fields products max 5 options
Post by: Funtasy on November 19, 2015, 11:50:08 AM
When I use a special field in my products then I can only get 5 options.
If I use 6 or more options then a search field gets in and makes sure that you can't see any of the options again.

How can I solve this?

Check this page to see it: http://funtasy.be/v5/nl/shop/animaties/basis-animaties/ballonplooien-detail.html

I have VirtueMart 3.0.10 and Joomla! 3.4.5
Title: Re: Special fields products max 5 options
Post by: GJC Web Design on November 19, 2015, 15:59:59 PM
add float:left to

.chzn-container .chzn-results {
  float: left;
  margin: 0 4px 4px 0;
  max-height: 240px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 0 0 4px;
  position: relative;
}
Title: Re: Special fields products max 5 options
Post by: Funtasy on November 20, 2015, 10:29:18 AM
Thanks,

It's fixed.