Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2009
    Location
    France
    Posts
    158
    Plugin Contributions
    0

    help question How to change the attribute's place on product pages ?

    Hi dears

    please see on this page:

    http://www.zamstore.com/index.php?ma...ducts_id=31693

    I would like the attributes to be aligned beside each other, one is a bit below the other one and I did not found how to change that (I'd like to check if it's possible to do it via the admin without having to customize the source code) ... some help would be very welcome.

    xx

    Aka

  2. #2
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,970
    Plugin Contributions
    96

    Default Re: How to change the attribute's place on product pages ?

    You'll need to update /includes/templates/zamstore/css/stylesheet.css. Around line #249, you'll find a statement similar to:
    Code:
    .wrapperAttribsOptions {
        margin: 0.3em 0;
    }
    Change that to:
    Code:
    .wrapperAttribsOptions {
        float: left;
        margin: 0.3em 0;
    }
    .wrapperAttribsOptions+br { display: none; }

  3. #3
    Join Date
    Mar 2009
    Location
    France
    Posts
    158
    Plugin Contributions
    0

    Default Re: How to change the attribute's place on product pages ?

    Quote Originally Posted by lat9 View Post
    You'll need to update /includes/templates/zamstore/css/stylesheet.css. Around line #249, you'll find a statement similar to:
    Code:
    .wrapperAttribsOptions {
        margin: 0.3em 0;
    }
    Change that to:
    Code:
    .wrapperAttribsOptions {
        float: left;
        margin: 0.3em 0;
    }
    .wrapperAttribsOptions+br { display: none; }
    thanks worked great ... will browse the site to check that it did not ############ up any other customization made so far.

    please can you tell me what is the .wrapperAttribsOptions+br ?
    is it a default line break tag included within the attribute display option or something else ?

    xx

    Aka

  4. #4
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,970
    Plugin Contributions
    96

    Default Re: How to change the attribute's place on product pages ?

    Right, the .wrapperAttribsOptions+br selector is targeting a <br /> tag that comes directly after the .wrapperAttribsOptions class. If that <br /> is not hidden, then it messes up the display.

 

 

Similar Threads

  1. Replies: 2
    Last Post: 1 Feb 2015, 03:35 PM
  2. can't find the place to change the space on front page
    By touchclothing in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 24 Mar 2009, 12:33 AM
  3. creating pages in the right place
    By pensaro1 in forum Basic Configuration
    Replies: 2
    Last Post: 18 Feb 2009, 07:18 PM

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