Is there a way to relocate the navigation arrows on the slider images? I have tried various methods found online with no success. Currently using ASP.NET, but doubt it matters. Employing the latest version of SLICK.
Here is the HTML code snippet:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Slick.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Slideshow</title>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
</head>
<body><div class="slider-for">
<form id="form1" runat="server">
<div class="slider">
<img src="\img\koral.jpg" />
<img src="\img\ships.jpg" />
</div>
</form></div>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script type="text/javascript" src="slick/Instellingen.js"></script>
</body>
</html>
My JS configuration settings:
$('.slider-for').slick({
slidesToShow: 1,
slidesToScroll: 1,
fade: true,
swipe: false,
accessibility: false,
arrows: false,
});
$(document).ready(function () {
$('.slider').slick({
slide: 'img',
dots: true,
infinite: true,
speed: 300,
arrows: true,
centerMode: true,
variableWidth: true,
autoplay: true,
autoplaySpeed: 2000,
appendArrows: $('img'),
appendDots: $('img')
});
});
UPDATE: Discovered that my cache was not refreshing.. There is now one arrow below the slideshow, any tips on moving it to the front?