Extra Block Types (EBT) - New Layout Builder experience❗

Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.

Demo EBT modules Download EBT modules

❗Extra Paragraph Types (EPT) - New Paragraphs experience

Extra Paragraph Types (EPT) - analogical paragraph based set of modules.

Demo EPT modules Download EPT modules

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);