Results 1 to 10 of 767

Hybrid View

  1. #1
    Join Date
    Nov 2009
    Location
    Tallmadge, Ohio
    Posts
    2
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Where can I get the download or do you install this. This is exactly what I want for our website.

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

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by joe1963 View Post
    Where can I get the download or do you install this. This is exactly what I want for our website.
    You can download it from the official plugins section here. It's well documented so you should have no problems installing it on your own.

  3. #3
    Join Date
    Apr 2005
    Location
    TN
    Posts
    94
    Plugin Contributions
    0

    Default Re: ZX Slideshow official thread

    Stupid question but I can't seem to get it to center. It is aligned to the left.
    I have looked and tried to tweak the css but nothing seems to work.
    Any suggestions?

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

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by bubbadan View Post
    Stupid question but I can't seem to get it to center. It is aligned to the left.
    I have looked and tried to tweak the css but nothing seems to work.
    Any suggestions?
    A link to your site would help...

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

    Default Re: ZX Slideshow official thread

    Quote Originally Posted by bubbadan View Post
    Stupid question but I can't seem to get it to center. It is aligned to the left.
    I have looked and tried to tweak the css but nothing seems to work.
    Any suggestions?
    I am having the same issue.

    kindly help me in placing it centrally.

    When I check it on my laptop, it seems to be in centre. But on other computer, it is on the left side.

    please tell me how can I place it in centre exactly. Moreover, My homepage header also seems to be shorter than the whole page width. How can I correct it?

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

    Default Re: ZX Slideshow official thread

    It's impossible to help you without a link to your site...

  7. #7
    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.

  8. #8
    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:	250 
Size:	28.9 KB 
ID:	10642Click image for larger version. 

Name:	2.jpg 
Views:	217 
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.

  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

 

 

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