How do you change the layout of the product options box? I have created a Configurable product with color options.

I notice that Magento demo store doesn’t display the product options consistently.

My options box appears spanning the entire column for what is just a 1 character choice.

I would like the options to display at the very least like this product: http://demo.magentocommerce.com/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.html

Any help you can provide would be much appreciated.

Thank you.

link|improve this question

0% accept rate
my current layout looks like this: demo.magentocommerce.com/asicsr-men-s-gel-kayanor-xii.html – eugene Nov 15 '10 at 17:54
feedback

2 Answers

It sounds like you're having trouble w/ the CSS for the options. If that's the case, try changing to the following style rule:

.product-options dd select {
    width:auto;
}

That will make select boxes take only the minimum necessary space to display their options. Be aware that the previous rule (width:99%) is there for visual consistency so your options may look ragged this way.

Hope that helps!

Thanks, Joe

link|improve this answer
Thank you guys. By using firebug, I realized that I just needed to move the production-option codes within the product-shop div (I am not sure if I am saying it right). And it was done. Thank you once again! – eugene Dec 6 '10 at 2:39
feedback

@Joseph's answer will help with cosmetic styling, but if you need to edit the markup, then you'll need the template files in app\design\frontend\base\default\template\bundle\catalog\product\view\type\bundle\option\ and depending on your configuration, edit checkbox.phtml, radio.phtml, select.phtml, etc.

Don't forget to copy the files into your local theme path for upgrade-safe edits.

Cheers, Jonathan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.