• Resolved chaplaindoug

    (@chaplaindoug)


    When I code the DIV as indicated in the instructions the slider DOES NOT go to the hyperlink specified. It just cycles to the next slide or stops.

    <div class="nivoSlider" style="height: 510px; width: 700px;">
    <a href="https://www.goodnewsjail.org/international">
    <img src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/foreign1.jpg" alt="test" />
    </a>
    <img src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/allcontinents.jpg" alt="" />
    <img title="" src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/sunneversets.jpg" alt="" />
    <img title="" src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/US.jpg" alt="" />
    </div>

    https://www.ads-software.com/extend/plugins/nivo-slider-light/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter chaplaindoug

    (@chaplaindoug)

    I found that the hyperlinks work in FireFox but NOT in IE9. They also do not work in IE9 set to compatibility mode. The code for my slider is now:

    <div class="nivoSlider" style="height: 310px; width: 425px;">
    <a href="https://www.goodnewsjail.org/international" class="nivo-imageLink" target="_self" ><img src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/foreign1.jpg" alt="test" /></a>
    <a href="https://www.goodnewsjaail.org/international" class="nivo-imageLink" target="_self" ><img src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/allcontinents.jpg" alt="" /></a>
    <a href="https://www.goodnewsjail.org/international" class="nivo-imageLink" target="_self" ><img title="" src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/sunneversets.jpg" alt="" /></a>
    <a href="https://www.goodnewsjail.org/national" class="nivo-imageLink" target="_self" ><img title="" src="https://www.goodnewsjail.org/wp-content/uploads/2012/08/US.jpg" alt="" /></a>
    </div>
    Thread Starter chaplaindoug

    (@chaplaindoug)

    I found a discussion about this at:

    The solution was to put a background image as suggested into the css for the nivo slider as follows:a. The css is found in the wp-content\plugins\nivo-slider-light folder. The image should also be placed in the same folder.

    .nivoSlider a.nivo-imageLink {
     position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    border:0;
    padding:0;
    margin:0;
    z-index:6;
    background: url(/images/spacer.gif);
    
    }

    Thread Starter chaplaindoug

    (@chaplaindoug)

    Thread Starter chaplaindoug

    (@chaplaindoug)

    Resolved per the above.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: NIVO slider light] Slider Does Not Go To Hyperlink!’ is closed to new replies.