Page 1 of 2 12 LastLast
Results 1 to 10 of 767

Hybrid View

  1. #1
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,740
    Plugin Contributions
    22

    Default Re: ZX Slideshow official thread

    OK, here's a solution on how to center ZX Slideshow for all those interested:

    Go to includes/templates/YOUR_TEMPLATE/css/index_home.css and find lines 90-97. Originally, this is how it looks:
    Code:
    .theme-default .nivoSlider {
        position:relative;
        background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin-bottom:50px;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    Now, simply change the code in red with margins of your choice. For those who don't know, the numbers represent "top right bottom left". Change it to something like this if you want the slideshow to be centered:
    Code:
    .theme-default .nivoSlider {
        position:relative;
        background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin:0 auto 50px auto;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    This is it, your slideshow should now be centered.

  2. #2
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by probtc View Post
    Click image for larger version. 

Name:	1.jpg 
Views:	251 
Size:	28.9 KB 
ID:	10642Click image for larger version. 

Name:	2.jpg 
Views:	218 
Size:	24.5 KB 
ID:	10643

    Hi,
    Firstly thanks for this addon...
    I am testing my store on my localhost.I was trying to move my slideshow container to under navigation bar.On home page everything is fine script works great but when click another links, I cant see buttons and images sliding to different position, it looks like something is missing or css problem. what am i doing wrong? could you help me about this issue please?
    Quote Originally Posted by balihr View Post
    OK, here's a solution on how to center ZX Slideshow for all those interested:

    Go to includes/templates/YOUR_TEMPLATE/css/index_home.css and find lines 90-97. Originally, this is how it looks:
    Code:
    .theme-default .nivoSlider {
        position:relative;
        background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin-bottom:50px;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    Now, simply change the code in red with margins of your choice. For those who don't know, the numbers represent "top right bottom left". Change it to something like this if you want the slideshow to be centered:
    Code:
    .theme-default .nivoSlider {
        position:relative;
        background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin:0 auto 50px auto;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    This is it, your slideshow should now be centered.

    I just tried to do it, but the slideshow remains in the left only.

    kindly check my website.

  3. #3
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    It is working great now. Thanks a lot for your help...

  4. #4
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,740
    Plugin Contributions
    22

    Default Re: ZX Slideshow official thread

    It actually DOES work. The link you gave me (.com) is just an iframe. Try visiting your site on it's original URL. BTW, I hope you are aware that you shouldn't be using Zen Cart in iframe...

  5. #5
    Join Date
    Jul 2012
    Posts
    7
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi Balihr,
    I just installed the mod with no problems and it runs, however, there is a "line" around the image so that if I put it on top a background I see an outline. Almost like a drop shadow in a way. I have tried both .png and .jpg versions of the files. Any ideas on how to get rid of this "outline"?

  6. #6
    Join Date
    Jun 2012
    Posts
    13
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by rjc_nnc View Post
    Hi Balihr,
    I just installed the mod with no problems and it runs, however, there is a "line" around the image so that if I put it on top a background I see an outline. Almost like a drop shadow in a way. I have tried both .png and .jpg versions of the files. Any ideas on how to get rid of this "outline"?
    Hi rjc

    From my understanding of this, there is in the /includes/templates/YOUR_TEMPLATE/css/index_home.css file, a section of code looking something like this

    Code:
    .theme-default .nivoSlider {
    	position:relative;
    	background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin-bottom:50px;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;/*4a4a4a*/
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    the shadow you are refering to is defined by the lines

    Code:
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
     box-shadow: 0px 1px 5px 0px #4a4a4a;
    change each of them, to look like


    Code:
    -webkit-box-shadow: 0px #4a4a4a;
    -moz-box-shadow: 0px #4a4a4a;
     box-shadow: 0px #4a4a4a;
    and that should set no shadow all the way around the slideshow.

  7. #7
    Join Date
    Jul 2012
    Posts
    7
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Thanks so much twistafix!! That is exactly what I needed...now everything is looking good!

  8. #8
    Join Date
    Oct 2007
    Posts
    134
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Hi Balihr,

    Thanks for your help.

    I have a question.

    can I use the mod to show on a specific category page?

    I mean, is it possible to have multiple slideshows, one for each category in my shop?

    If possible, let me know how this can be done.

    best regards

  9. #9
    Join Date
    Jan 2009
    Posts
    15
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by balihr View Post
    OK, here's a solution on how to center ZX Slideshow for all those interested:

    Go to includes/templates/YOUR_TEMPLATE/css/index_home.css and find lines 90-97. Originally, this is how it looks:
    Code:
    .theme-default .nivoSlider {
        position:relative;
        background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin-bottom:50px;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    Now, simply change the code in red with margins of your choice. For those who don't know, the numbers represent "top right bottom left". Change it to something like this if you want the slideshow to be centered:
    Code:
    .theme-default .nivoSlider {
        position:relative;
        background:#fff url("../images/loading.gif") no-repeat 50% 50%;
        margin:0 auto 50px auto;
        -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
        -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
        box-shadow: 0px 1px 5px 0px #4a4a4a;
    }
    This is it, your slideshow should now be centered.

    I tried the above code to center the slideshow but it doesnt work. I have no idea what I am doing wrong.
    My website is a is a "fluid" width site, meaning that its width changes as your customers' browser
    width changes.

    So on my laptop my slideshow looks center and looks fine but if I go to my desktop which wider screen the slideshow shows only to the left leaving a empty space on the right side.

    Can anyone help me... I been at this for a week now and at this point don't know how to fix it. just in case website is secretofbelieving.com

  10. #10
    Join Date
    Oct 2008
    Location
    Croatia
    Posts
    1,740
    Plugin Contributions
    22

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by djohanaa View Post
    I tried the above code to center the slideshow but it doesnt work. I have no idea what I am doing wrong.
    My website is a is a "fluid" width site, meaning that its width changes as your customers' browser
    width changes.

    So on my laptop my slideshow looks center and looks fine but if I go to my desktop which wider screen the slideshow shows only to the left leaving a empty space on the right side.

    Can anyone help me... I been at this for a week now and at this point don't know how to fix it. just in case website is secretofbelieving.com
    Please replace the file includes/templates/cherry_zen/jscript/jquery.nivo.slider.pack.js with the one attached (unzip first), clear your cache and see if it works for you. Keep in mind that your images MUST have the same dimensions! Let us all know if it helps you.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 22
    Last Post: 26 Jan 2026, 06:47 AM
  2. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3672
    Last Post: 11 Sep 2025, 05:07 PM
  3. goMobile Support Thread
    By steveyork136 in forum Addon Templates
    Replies: 29
    Last Post: 26 Aug 2015, 11:56 AM
  4. Frontpage Slideshow [support thread]
    By sport_billy in forum All Other Contributions/Addons
    Replies: 108
    Last Post: 10 Jul 2014, 12:41 PM
  5. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 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