cancel
Showing results for 
Search instead for 
Did you mean: 

zemez film slider

zemez film slider

Hi all,

First time writing here, I bought a zemez template ver. 2.3.4. I want every photo of the slider to go to a link. 

image1.jpg

If I put that code it ruins the slider the next banner is going down and the buttons dissappear.

Any suggestions?

1 REPLY 1

Re: zemez film slider

It's year later so probably you don't need help anymore but I'll leave an answer here for future reference.

 

  1. Add "Layer Text" to your slide
  2. Set "Layer text/html" to 
    <a href="/example-url"></a>
  3. DO NOT set "Layer Width" nor "Layer Height"
  4. Add this to your themes LESS styles 
    .sp-slide .sp-layer {
    	width: 100%;
    	height: 100%;
    	> div {
    		a {
    			display: block;
    			width: 100%;
    			height: 100%;
    			position: absolute;
    			left: 0;
    			right: 0;
    			top: 0;
    			bottom: 0;
    		}
    	}
    }
  5. Done!