This mod is awesome! I am having a difficult time doing a few things though. You can see my live page here: http://www.framesforlife.com/copy-ex...example-1-p-11

Here is my flexible_attributes.css stylesheet coding:
Code:
/* Global Entries*/
.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;}/*allows floated attributes to sit side by side if desired. Without this each attribute has to go to new line*/

/*My Entries*/
#wAttrib-4 {clear: left;} /*Artwork Size Text Box. This starts on a new line*/
#wAttrib-1 {clear: left; float: left;}/*Select Width Drop-down*/
#wAttrib-2 {clear: left; float: left;}/*Select Height Drop-down*/
#wAttrib-3 {float: left;} /*Width Fractions. this will sit beside width drop-down*/
#wAttrib-5 {float: left;} /*Height Fractions. this will sit beside width drop-down*/
#wAttrib-42 .attribPrice {display: none;} /*this is not working yet*/
#wAttrib-78 .attribPrice {display: none;} /*this is not working yet*/
Here are my issues:
1. Is it possible to make the text disappear for attribute #3 and attribute #5 (Width and Height Fractions)? I want the title text to be hidden from the visitors so the field can come closer to the first box (as both tie together). I tried this code:
Code:
#wAttrib-3 {float: left; display:none;}
but the whole box disappeared. My plan is to preferably hide this text so the visitor cannot see it.

2. Is is possible to make text appear to the right of the field instead instead of before the field?

3. The rules for attribute #42 and #78 above do not seem to be working. I am trying to hide the (+3.33) pricing in both of these drop-downs. All pricing in these two drop-down menus need to be hidden. The ID #'s are 42 and 78 and you can see I have them defined. I am following the rules of this post: http://www.zen-cart.com/forum/showpo...01&postcount=5 according to blackbelt.

Any ideas please?