Hey guys,
I have fixed it once before but I cannot for the life of me figure out where it was that I made the fix. Currently, the State selection drop down box is only 40px wide. I need it to be 180. The chosen.css shows this as the size, but there is a style overriding the size to 40. It is only affecting the state box. County is perfect as are all other drop down boxes.
If anyone knows what to look at or where to look, let me know. I have spent about an hour hunting for this but I can't find it. Firebug does not give a file responsible for this 40px size. it is simply listed as element.style
Thanks.
Hi Brody,
just add to the style
table.user-details .vm-chzn-select {
background: url("/components/com_virtuemart/assets/images/vmgeneral/backgrounds.png") repeat-x scroll center top #e8e8e8;
border: 1px solid #ccc;
border-radius: 4px;
color: #777;
margin-bottom: 2px;
padding: 5px 5px 4px;
width: 210px !important;
}
(the 40px is coming from the shopper field "Field Size" - you could just 0 this)
Look at John go! Popping up to help me here too! Holy smokes. I add that to the "chosen.css" file correct?
That solved it. Thanks again!!!!