PS. The bit of code in custom.css at 226 is
$(‘.flexslider’).imagesLoaded(function(){
$(‘.bk-slider-module .flexslider’).flexslider({
animation: ‘slide’,
controlNav: false,
animationLoop: true,
slideshow: true,
pauseOnHover: true,
slideshowSpeed: 10000,
animationSpeed: 1200,
smoothHeight: true,
directionNav: true,
prevText: ”,
nextText: ”,
});
And at 357 its
// Breaking Slider
$(‘.module-breaking-carousel .bk-carousel-wrap’).flexslider({
animation: “slide”,
controlNav: false,
itemWidth: 210,
columnWidth: 1,
pauseOnHover: true,
move: 1,
animationLoop: true,
prevText: ”,
nextText: ”,
minItems: getGridSize(), // use function to pull in initial value
maxItems: getGridSize(), // use function to pull in initial value
start: function(slider){
if (typeof flexslider !== ‘undefined’) {
flexslider = slider;
}
}
});
And at the top of the custom.js is….
(function($) {
“use strict”;
$=jQuery;