Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NIVO SLIDER - Make a slide a link?

Tags:

slider

Is it possible to make a slide a link in NIVO SLIDER?

like image 219
Erik Avatar asked Oct 14 '10 14:10

Erik


2 Answers

I had a problem with links in IE all versions, other browsers were working OK, solved with adding:

background-color:#fff; 
filter:alpha(opacity=0); 
/other than IE/ 
-moz-opacity:0;
-khtml-opacity: 0;
opacity: 0;

to the **.nivoSlider a.nivo-imageLink** of the nivo-slider.css

like image 199
Nejc Menard Avatar answered Sep 22 '22 13:09

Nejc Menard


Yes, just wrap the image in an anchor tag <a>

<div id="slider">
    <img src="media/images/headers/phono1.jpg" alt="No Link" />
    <a href="http://www.pinelakedesign.com"><img src="media/images/headers/photo2.jpg" title="Linked Up" /></a>
</div>
like image 40
Dylan Valade Avatar answered Sep 21 '22 13:09

Dylan Valade