Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Jul 2004
    Posts
    246
    Plugin Contributions
    0

    Default Additional images underneath main product image

    Hi

    I'm trying to position an additional image underneath the main product image which I have aligned to the right but I can't get it over to the right quite far enough.
    Any CSS gurus out there who can pinpoint what I am doing wrong

    Example = http://www.dartdesigns.co.uk/index.p...&products_id=1

    Thanks
    UK based Zen Cart Web Designer here www.handcoded.co.uk

  2. #2
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    If your images will be in the same page position in all your ads? Then you can use a position:relative; left:100px; line to manouver your additional images.

    Try raplacing this:
    PHP Code:
    #productAdditionalImages {
    floatright;
    padding-top150px;

    with this:
    PHP Code:
    #productAdditionalImages {
    floatright;
    position:relativeleft180px;
    padding-top150px;

    ....and changing the 180px; until it's in the right place.

  3. #3
    Join Date
    Jul 2004
    Posts
    246
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    Perfect

    Thanks ever so much
    UK based Zen Cart Web Designer here www.handcoded.co.uk

  4. #4
    Join Date
    Jul 2004
    Posts
    246
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    Found a small problem.

    Internet Explorer displays the page just fine but with Firefox I am unable to enlarge the main product image. How can I cure this?

    Thanks
    UK based Zen Cart Web Designer here www.handcoded.co.uk

  5. #5
    Join Date
    Jul 2004
    Posts
    246
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    Solved it.

    Had to change the top padding to a top margin and bingo
    UK based Zen Cart Web Designer here www.handcoded.co.uk

  6. #6
    Join Date
    Feb 2009
    Posts
    4
    Plugin Contributions
    0

    help question Re: Additional images underneath main product image

    This would perhaps work for me if I knew what file contains #productAdditionalImages {

  7. #7
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    Quote Originally Posted by digger99 View Post
    This would perhaps work for me if I knew what file contains #productAdditionalImages {
    That will be your stylesheet.css file :-)

  8. #8
    Join Date
    Oct 2010
    Posts
    121
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    Hii, I've used this thread to help me align my additional images below my main image. However, is there a way I could get the images to align straight across? When there are more than 3 images, they tend to go on different rows...Here's a link to see an example http://oembargain.com/index.php?main...roducts_id=230

    Thanks in advance!

  9. #9
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    #productAdditionalImages {
    float: left;
    left: 0;
    padding-top: 0;
    position: relative;
    width: 100%;
    }

    Adding the width will allow them to spread across the page, but you'll have to adjust the image width in admin, so that they fit on one row. Either that or limit the number of extra images to prevent an additional row.

  10. #10
    Join Date
    Oct 2010
    Posts
    121
    Plugin Contributions
    0

    Default Re: Additional images underneath main product image

    works great! Thanks a lot!

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v139h If I change main product image, additional images disappear...
    By ilmarchez in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 2 Jan 2015, 03:35 PM
  2. Additional Product images to the side of main image
    By kezan98 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 8 Oct 2012, 01:48 AM
  3. Small main product image, Medium additional product images
    By quick1 in forum General Questions
    Replies: 2
    Last Post: 5 May 2011, 04:05 AM
  4. Product description ALWAYS under Main Image and Additional images
    By sonjamichelle in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Mar 2009, 03:59 PM
  5. How to move additional images to the right of main product image
    By davale in forum Templates, Stylesheets, Page Layout
    Replies: 12
    Last Post: 20 Sep 2006, 02:27 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