logo

Palette - Make it Colorful🎨

Palette - Visual Page Builder, no design degree required.

Live Demo Download Palette

Scroll

Theming Drupal lesson 6 Theming Views slideshow and jcarousel

17/04/2025, by Ivan

In this video, I will theme a Views slideshow. I will override several templates and integrate the jCarousel plugin to customize the slideshow pager.

Modules used:

Views Slideshow - http://drupal.org/project/views_slideshow

Plugins:

jQuery jCarousel - http://sorgalla.com/projects/jcarousel/

Code to initialize jCarousel:

(function ($, Drupal, window, document, undefined) {

  $(document).ready(function(){
    $('#widget_pager_bottom_portfolio_slideshow-block').jcarousel();
  });

})(jQuery, Drupal, this, this.document);