Placing field slideshow
There are several possibilities to display a field slideshow.
The Field Slideshow module gives the ability to create slideshows from image and media fields.

Here are some example of css you might want to use to style differently the slideshow:
Circle pager (Number pager)
.field-slideshow-pager{
text-align: center;
}
.field-slideshow-pager a{
display:inline-block;
width:16px;
height:16px;
background: url(../img/icons/icon-point.png) no-repeat 0 -16px;
text-indent: -999%;
}
.field-slideshow-pager a.activeSlide{
background-position: 0 0 ;
}
If you have a mixed set of portrait and landscape mode images you may want to center them. Here is the minimal css required to make that happen:
/* Generic selector, you may want to have something more specific
* Like .node-full .field-name-field-image2 .field-slideshow-slide */
.field-slideshow-slide{
/* Take the width of the largest possible image of the slideshow
* and override the width of the slides with it */
width: 420px !important;
/* Makes sure the images are centered */
text-align: center;
}
This error can appear when redefining the carousel items margins or other css. To fix this, make sure to set a width for the items.
Example:
.field-slideshow-carousel-wrapper li.jcarousel-item {
margin: 0;
width: 100px;
}
This can happen if you display the field with view. A solution is to uncheck the field option "Group multiple values".
Good Example for how to use field slideshow -
http://www.globalsoftlab.com/blog/drupal-7-image-gallery-without-views-f...
There are several possibilities to display a field slideshow.