Hi! I'm using v1.3.9h and I seem to have come a little unstuck with my attributes.

I have 4 dropdown attributes currently aligned vertically and I would like them to align horizontally to take up less space. Preferably 2 rows with 2 drop downs in each row.

I've tried searching and the closest I came was http://www.zen-cart.com/forum/showth...rop+attributes

I have changed the coding as suggested from:
Code:
<div class="wrapperAttribsOptions">
<div class="optionName back"><?php echo $options_name[$i]; ?></div>
<div class="back"><?php echo "\n" . $options_menu[$i]; ?></div>
<br class="clearBoth" /></div>
to
Code:
<div class="wrapperAttribsOptions">
<div class="optionName"><?php echo $options_name[$i] . '&nbsp;'; ?><?php echo '&nbsp;' . $options_menu[$i]; ?></div>
The only thing that changed was from a vertical dropdown aligned right, it is now aligned left.

I have also tried going through admin/catalog/option names manager and selecting rows to 4 with no luck either.

My site is :http://www.amabelle.elementfx.com/sh...roducts_id=198

Any help or ideas would be most appreciated!
Thank you