Results 1 to 5 of 5
  1. #1
    Join Date
    May 2014
    Location
    MA
    Posts
    20
    Plugin Contributions
    0

    Default Option Names and Dropdown

    I am using the options in my cart but in the page i don't like the look of them. There is too much space between each option name.

    When i go to the Attributes Controller and do a preview it looks great... what am i doing wrong. How can i improve the look?

    Thanks for any help

    www.roadfoxbicycles.com/Store

    Andy

  2. #2
    Join Date
    Aug 2009
    Location
    Longs, SC
    Posts
    626
    Plugin Contributions
    2

    Default Re: Option Names and Dropdown

    I'm assuming that you're talking about the space between attribute pull downs. That extra extra space is coming from a combination of the margin on #wrapperAttribsOptions and the <br class="clearBoth" />. You can shrink up the space between by changing your stylesheet.css at around line 187 to :
    Code:
    .wrapperAttribsOptions {
        display: block;
        margin: 0 0 -0.73em;
    }

  3. #3
    Join Date
    May 2014
    Location
    MA
    Posts
    20
    Plugin Contributions
    0

    Default Re: Option Names and Dropdown

    Many thanks

    I traced this and found that this line is currently set as below
    HTML Code:
    .wrapperAttribsOptions { display:block;
            margin: 0.3em 0em;
            }
    This is how it appears
    Click image for larger version. 

Name:	Options.png 
Views:	31 
Size:	9.6 KB 
ID:	14115

    This is how i want it to appear...
    Click image for larger version. 

Name:	Options 1.png 
Views:	33 
Size:	13.1 KB 
ID:	14116

    Many thanks

  4. #4
    Join Date
    May 2014
    Location
    MA
    Posts
    20
    Plugin Contributions
    0

    Default Re: Option Names and Dropdown

    Got it...

    Played with the numbers and found that this works

    HTML Code:
    .wrapperAttribsOptions { display:block;
            margin: -0.5em 0em;
            }

  5. #5
    Join Date
    Aug 2009
    Location
    Longs, SC
    Posts
    626
    Plugin Contributions
    2

    Default Re: Option Names and Dropdown

    That'll work but if you want to have a little more space between the "Please choose" and the first attribute box you should consider adding all the space at the bottom the way I specified it. The marging settings are margin: top right bottom left. If you set it the way you did it's top/bottom right/left. Which translates to margin: -.5em 0 -.5em 0. As you can see it's removing space from both the top and bottom. You might try margin: 0 0 1em 0;

 

 

Similar Threads

  1. Adding copied option names and option valuesto product pricing
    By Derek Bryant in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 29 Apr 2009, 06:31 PM
  2. Attributes and Option Names
    By Squeakywheels in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 24 Mar 2009, 07:03 PM
  3. Whatīs that option? Option Names and Values Glo....
    By ryska in forum General Questions
    Replies: 0
    Last Post: 3 Dec 2007, 05:51 PM
  4. Dropdown names and values, editin html output
    By mrmarcus66 in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 20 Dec 2006, 11:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg