Having an issue on how to change the width of the dropdown? See related issue here: http://goo.gl/p0CP3. Would have wanted to leave a reply there since it seems it is not resolved; unfortunately the topic has been closed to new replies. I hope this would help others like me wanting a quick fix for it.
Choose either of the two:
px insterad of %
.select_wrapper select {
width: 245px;
margin-bottom: 5px;
}
% instead of px
.select_wrapper select {
width: 100%;
margin-bottom: 5px;
}
You may change the value of the width and margin-bottom.