Try Flexible Attributes in Free Addons. It lets you address attributes individually; you can do almost anything if you know the right CSS for it.
Try Flexible Attributes in Free Addons. It lets you address attributes individually; you can do almost anything if you know the right CSS for it.
Thanks gjh42!
Checking out flexible attributes now. While looking, it seems that i have to edit stylesheet_flexible_attributes.css file. While i am still learning how to edit css, possible to give me a starting point on editing it to group 3 attributes together?
Something like:
/*attribute layout*/
.wrapperAttribsOptions label {font-size: 1.0em;}/*make "label" elements match other text*/
h3#attribsOptionsText {display: none;}/*hide the "Please Choose:" heading*/
h4.optionName {font-size: 1.0em;}
.wrapperAttribsOptions+br.clearBoth {display: none;}/*allow floated attributes to sit side by side if desired*/
#wAttrib-4 {clear: left; float: left;border-top-style:solid; margin-top: 50px;}
#wAttrib-5 {float: right; border-top-style:solid; margin-top: 30px;}/*this will sit beside #wAttrib-11*/
#wAttrib-6 {clear: left;}/*this will sit on a new line*/
#wAttrib-14 h4 {display: none;}
#wAttrib-15 h3 {font-size: 1em; font-weight: normal;}/*make comments above attribute like standard text*/
#wAttrib-35 .attribsOptions {display: none;}/*for a read-only attribute to hide all but comments*/
You won't be able to structurally group attributes without custom PHP code, but you can arrange them and give them border sections to make it look like a group using style rules.
It would be more complicated to give theoretical rules for this than to give the actual rules for your particular situation.
I suggest you take some time to study CSS, as you really need to know how to use it for most of your site's customized appearance. www.w3schools.com is a good place to start.