Our products

To make the slider work kwicks-1.5.1.pack.js file is used

The HTML Kwicks Slider Structure:

<div class="kwicks-wrapper">
	<ul class="kwicks"> 
		<li>
			<div class="slide-kwicks">
				<img src="YourImage.jpg" alt="">
				<div class="kwicks-banner">caption content</div>
			</div>
		</li>
		...
	</ul>
</div>

In order to create a Kwicks slider you will need:

  1. Create a bulleted list <ul> with kwicks class (<ul class="kwicks">).
  2. Each slide should consist of the following coding structure:
  3. <li>
    	<div class="slide-kwicks">
    		<img src="YourImage.jpg" alt="">
    		<div class="kwicks-banner">caption content</div>
    	</div>
    </li>
  4. You can add links to each of the slides by placing each image to an <a> tag (<a href="#"></a>).