By combining http://codepen.io/srkimir/pen/mGbrf and http://codepen.io/transportedman/pen/NPWRGq , I successfully created a fading carousel with thumbnails similar to the one in http://codepen.io/kikibres/pen/gpZoXz .
However, when trying to implement this on my own website, I encountered issues. While the slides were able to fade in at specified intervals, I couldn't get the thumbnails or interval:false feature to work as intended. Moreover, my Dreamweaver text editor flagged a potential error in the JavaScript for the thumbnails, mentioning a missing "use strict" statement for var conf = {
. Strangely, the code worked perfectly fine on CodePen but failed on my localhost website.
HTML
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>KINCARDINE DIVE LOCKER</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
...
CSS
.productdetails { width: 80%; margin-left: auto; margin-right: auto; }
...