Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Apr 2006
    Posts
    358
    Plugin Contributions
    0

    Default Bestsellers thumbnail images not Thumbnails...

    I just gave the Bestsellers thumbnail images Sidebox a try and found the thumbnails to be my full size original images, so I uninstalled it immediately. Anyone else installed this and had a similar problem? Can anyone suggest a solution?

    Thanks!

  2. #2
    Join Date
    Feb 2006
    Location
    UK
    Posts
    306
    Plugin Contributions
    1

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Hi, sorry only just saw this thread, you need to include the style sheet code included in the readme. The thumbnail size is controlled by the style sheet code that I included, simply copy and paste the CSS from the readme into your css file in the appropriate place (the readme tells you exactly where).

  3. #3
    Join Date
    Jan 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Quote Originally Posted by Pauls View Post
    Hi, sorry only just saw this thread, you need to include the style sheet code included in the readme. The thumbnail size is controlled by the style sheet code that I included, simply copy and paste the CSS from the readme into your css file in the appropriate place (the readme tells you exactly where).
    hi

    i start using zencart today and i am installing new modules to wee how good is,i instaled yours but i have a prob,can you check please?

    www.primetek.eu/shop

    i copy past what is in the readme but have that error,tks

  4. #4
    Join Date
    Mar 2007
    Posts
    27
    Plugin Contributions
    0

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Quote Originally Posted by Pauls View Post
    Hi, sorry only just saw this thread, you need to include the style sheet code included in the readme. The thumbnail size is controlled by the style sheet code that I included, simply copy and paste the CSS from the readme into your css file in the appropriate place (the readme tells you exactly where).
    You're so close to having a fantastic mod here. I think Peace Freak was trying to say that he uninstalled the mod because the thumbnails are nothing more than shrunken versions of the full-sized product image. This slaughters bandwidth, and could easily be overcome if you used the small images generated by Image Handler, for example.

    Unfortunately I'm also uninstalling this mod for now, I'll be watching this thread though.

  5. #5
    Join Date
    Apr 2006
    Posts
    358
    Plugin Contributions
    0

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Yes, you are right Valaroopie! If the thumbnails were actual thumbnails, this would be a wonderful mod... Until then, I will wait.

  6. #6
    Join Date
    Apr 2004
    Location
    UK
    Posts
    5,821
    Plugin Contributions
    2

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Thumbnail size is controlled via stylesheet, as per readme instructions in
    zip file for adding additional stylesheet code.. i.e.
    Code:
    .bestsellers_thumbnail {
    width: 26px;
    padding-right: 4px;
    float: left;
    margin: 0px;
      }
    Instructions for using this sidebox with Image Handler given
    at http://www.zen-cart.com/forum/showthread.php?t=65032
    Last edited by misty; 6 May 2007 at 08:38 AM.

  7. #7
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Quote Originally Posted by misty View Post
    Thumbnail size is controlled via stylesheet, as per readme instructions in
    zip file for adding additional stylesheet code.. i.e.
    Code:
    .bestsellers_thumbnail {
    width: 26px;
    padding-right: 4px;
    float: left;
    margin: 0px;
      }
    Instructions for using this sidebox with Image Handler given
    at http://www.zen-cart.com/forum/showthread.php?t=65032
    Actually this technique works with or without using Image Handler.

  8. #8
    Join Date
    May 2007
    Posts
    96
    Plugin Contributions
    0

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Hi, I have installed the mod and I have done it correctly I checked it over about 100 times and I can't even get my sidebox to show up. I have went in the admin area/tools/sideboxes controls and made sure it was on and it is.

    Why won't this show up.

    I think I had this problem before I installed this mod though, because when I wen't to edit this in the tools section it said it was already on before I updated it to the site.

    Any help anyone I am stumped about this. I have never seen anything just not show up.


    I manually checked each file to make sure that they wen't into the correct spots also.

    zen 1.3.7

    I did all of this and changed the yourtemplate to my template name also.

    1. extract best_sellers.php to includes\modules\sideboxes\YOURTEMPLATE
    2. extract tpl_best_sellers.php to includes\templates\YOURTEMPLATE\sideboxes
    3. Find the following CSS in includes\templates\YOURTEMPLATE\css\stylesheet.css file (approx line 478)
    #bestsellers .wrapper {
    margin: 0em 0em 0em 1.5em;
    }
    #bestsellers ol {
    padding: 0;
    margin-left: 1.1em;
    }
    #bestsellers li {
    padding: 0;
    margin: 0.3em 0em 0.3em 0em;
    }
    and replace it with this
    .bestsellers_thumbnail {
    width: 26px;
    padding-right: 4px;
    float: left;
    margin: 0px;
    }
    #bestsellers .wrapper {
    margin: 0em 0em 0em 0.9em;
    }
    #bestsellers ol {
    padding: 0;
    margin-left: 1.1em;
    }
    #bestsellers li {
    margin-left: 3px;
    padding-top: 5px;
    margin: 0em 0em 1.3em 0em;
    clear: both;
    }

    As you can see it's not here and it is on, www.orgazmictoys.com is where I have it installed.
    Last edited by mboley370; 3 Jun 2007 at 03:16 AM.

  9. #9
    Join Date
    May 2007
    Posts
    96
    Plugin Contributions
    0

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Quote Originally Posted by mboley370 View Post
    Hi, I have installed the mod and I have done it correctly I checked it over about 100 times and I can't even get my sidebox to show up. I have went in the admin area/tools/sideboxes controls and made sure it was on and it is.

    Why won't this show up.

    I think I had this problem before I installed this mod though, because when I wen't to edit this in the tools section it said it was already on before I updated it to the site.

    Any help anyone I am stumped about this. I have never seen anything just not show up.


    I manually checked each file to make sure that they wen't into the correct spots also.

    zen 1.3.7

    I did all of this and changed the yourtemplate to my template name also.

    1. extract best_sellers.php to includes\modules\sideboxes\YOURTEMPLATE
    2. extract tpl_best_sellers.php to includes\templates\YOURTEMPLATE\sideboxes
    3. Find the following CSS in includes\templates\YOURTEMPLATE\css\stylesheet.css file (approx line 478)
    #bestsellers .wrapper {
    margin: 0em 0em 0em 1.5em;
    }
    #bestsellers ol {
    padding: 0;
    margin-left: 1.1em;
    }
    #bestsellers li {
    padding: 0;
    margin: 0.3em 0em 0.3em 0em;
    }
    and replace it with this
    .bestsellers_thumbnail {
    width: 26px;
    padding-right: 4px;
    float: left;
    margin: 0px;
    }
    #bestsellers .wrapper {
    margin: 0em 0em 0em 0.9em;
    }
    #bestsellers ol {
    padding: 0;
    margin-left: 1.1em;
    }
    #bestsellers li {
    margin-left: 3px;
    padding-top: 5px;
    margin: 0em 0em 1.3em 0em;
    clear: both;
    }

    As you can see it's not here and it is on, www.orgazmictoys.com is where I have it installed.
    Anyone on this?

  10. #10
    Join Date
    Sep 2006
    Posts
    35
    Plugin Contributions
    0

    Default Re: Bestsellers thumbnail images not Thumbnails...

    Quote Originally Posted by Valaroopie View Post
    You're so close to having a fantastic mod here. I think Peace Freak was trying to say that he uninstalled the mod because the thumbnails are nothing more than shrunken versions of the full-sized product image. This slaughters bandwidth, and could easily be overcome if you used the small images generated by Image Handler, for example.

    Unfortunately I'm also uninstalling this mod for now, I'll be watching this thread though.
    Agreed. I had to uninstall it as soon as I knew it uses the full-sized image rather than the small one. The CSS customisation is a wrong practical technique because it's distorted and it's not fully optimised.

    I appreciate the mod though but it need a little extra effort to make it perfect.
    mali
    [FONT=Verdana]
    [/FONT]

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Bestsellers thumbnail images
    By Soniccc in forum Addon Sideboxes
    Replies: 1
    Last Post: 2 Jun 2011, 11:56 AM
  2. Change Font Alignment in Bestsellers thumbnail images
    By hcd888 in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 1 Feb 2011, 02:49 PM
  3. Bestsellers with Thumbnails problem...
    By joyjoy in forum Addon Sideboxes
    Replies: 2
    Last Post: 14 Sep 2010, 11:17 PM
  4. bestsellers thumbnails for 1.3.8a?
    By navido in forum Basic Configuration
    Replies: 1
    Last Post: 12 Jun 2009, 06:53 AM
  5. Bestsellers Thumbnail Images
    By Berserker in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 15 May 2008, 12:32 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