Friday, March 30, 2012

How to use the JCarousel Module for Drupal

JCarousel is a useful module for creating Drupal slideshows. It uses the JCarousel plugin from http://sorgalla.com/jcarousel/and makes it easy to use via integration with Views.

Here's a simple example of how to use the JCarousel module.

Step 1: Install the modules




Make sure that you have these three modules installed and enabled:




Step 2: Create content with an image field


tutuploadsmedia_1328037792046.png



In order to show images, you will need content with images.

You can use the default "Article" content type if you wish. Go to Structure > Content types and make sure that you have a content type with an image field attached as in the image above. Then go to Add content and use that content type to create several content items with images attached.




Step 3: Create a view


tutuploadsmedia_1328037067831.png



Go to Structure > Views and click Add new view.

The important part of the view is "Create a block". Choose the JCarousel Display format and then click Continue & edit.

The image below shows the settings you will need. If you followed our instructions when setting up the view, the only thing you might have to change here is the Fields. Click Add and add the Content: Image field to your view.




tutuploadsmedia_1328038178103.png



Click Save to complete the creation of your view.




Step 4: Place the block


tutuploadsmedia_1328037109070.png



Go to Structure > Blocks and place your new JCarousel block somewhere on your site.

Once the block is live, it will look like the image below:




tutuploadsmedia_1328038443124.png



The JCarousel project page on Drupal.org warns:

"You will almost certainly need to do custom CSS in your theme in order to use this module. The default CSS only supports 100 pixel square items. A basic understanding of CSS is therefor required to use this module."

As you can see, the output here is 100 pixel square images.

You will need to add some CSS for JCarousel to your theme in order to change this width. The original CSS is in /sites/all/modules/jcarousel/skins/default/jcarousel-default.css

The width is being controlled by:

 



01..jcarousel-skin-default .jcarousel-item {

02.padding: 0;

03.width: 100px;

04.height: 100px;

05.overflow: hidden;

06.border: 1px solid #CCC;

07.list-style: none;

08.background: #fff none;

09.}




 

You can modify that and place it in your theme's CSS file.


1 comment:

  1. Thanks for this Santosh - a great help!
    Trying to finish my first Drupal site.
    Regards,
    Peter @h2cm
    http://hodges-model.blogspot.co.uk/

    ReplyDelete