logo

Canvas Palette - Make it Colorful🎨

Canvas Palette - Drag in blocks, drop in a video, add a splash of color - no design degree required.

Demo Palette Download Palette

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

GLightbox is a pure javascript lightbox (Colorbox alternative without jQuery)âť—

It can display images, iframes, inline content and videos with optional autoplay for YouTube, Vimeo and even self-hosted videos.

Demo GLightbox Download GLightbox

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