Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 2007
    Location
    Virginia
    Posts
    57
    Plugin Contributions
    0

    Default Why are my swatch images overlapping on my product attributes ????

    I set up a product so that customoers can pick the images they want to print on coffee mugs. BUT, when the product comes up on the screen after I set the attribute for 2 images per row the pictues are on top of each other.

    See (toward the bottom):

    http://www.robertocigars.com/index.p...roducts_id=243

    I ahve about 5 more stock images to add. Can anyone help figure out why this is doing the overlap?

  2. #2
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,263
    Plugin Contributions
    3

    Default Re: Why are my swatch images overlapping on my product attributes ????

    Couple of things...

    Your swatches are 150 pixels wide.

    So, in your stylesheet, you need to give relative space to these images.

    Around line 500 or so, your stylesheet says:

    Code:
    /*Attributes*/
    .attribImg {
    	width: 20%;
    	margin: 0.3em 0em;
    }
    What this is doing is taking the AVAILABLE space in your center column (not very much) and dividing 100% of that space by 20% - which results in FIVE equal portions of space.

    Now... your center column is about 420 pixels wide, and if you divide that by 5 (20% each) then you get five "positions" that cannot be wider than 84 pixels each (420/5 = 84).

    But your swatches are 150px - almost twice as much as 84px.

    So you either:

    1. Increase the centre column width by changing mainWrapper.
    2. Make the swatches NARROWER than 84px
    3. Change the declaration:

    Code:
    /*Attributes*/
    .attribImg {
    	width: 155px;
    	margin: 0.3em 0em;
    }
    OR

    Code:
    /*Attributes*/
    .attribImg {
    	width: 50%;
    	margin: 0.3em 0em;
    }
    NB:Changing the declaration will have site-wide results...
    20 years a Zencart User

 

 

Similar Threads

  1. Images - Attributes Image Swatch - Question
    By lastlokean in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 28 Nov 2012, 11:30 PM
  2. Additional Images are Overlapping
    By dat311 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 3 Jul 2011, 09:19 PM
  3. Product images overlapping
    By grasmat in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 7 Dec 2010, 08:36 PM
  4. Color swatch text overlapping
    By Blake81 in forum General Questions
    Replies: 0
    Last Post: 9 Mar 2008, 03:46 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR