
Originally Posted by
FSGDAG
Did anyone ever find a way to make the slideshow work with a third party thumbnail site?
Here I try to integrate with thumbshot [the problem I found is the size is too small]. I use komet theme here.
1. Download the block
2. Upload the file
3. Open themes/komet/index.html and edit the slideshow block
find [arround line 14]
HTML Code:
<%block_slide max_item="5"%>
replace with
HTML Code:
<%block_slideshow_custom max_item="10"%>
4. Open themes/komet/style.css, you need to adjust the size.
find
HTML Code:
.stepcarousel{
position: relative; /*leave this value alone*/
overflow: scroll; /*leave this value alone*/
width: 98%; /*Width of Carousel Viewer itself*/
height: 200px; /*Height should enough to fit largest content's height*/
margin: 5px;
} replace with
HTML Code:
.stepcarousel{
position: relative; /*leave this value alone*/
overflow: scroll; /*leave this value alone*/
width: 98%; /*Width of Carousel Viewer itself*/
height: 100px; /*Height should enough to fit largest content's height*/
margin: 5px;
} find
HTML Code:
.stepcarousel .panel{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
width: 254px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
} replace with
HTML Code:
.stepcarousel .panel{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
width: 120px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
} Finish
Don't forget to add this code in your footer if you use thumbshots
HTML Code:
<a href="http://www.thumbshots.com" target="_blank" title="Thumbnails Previews by Thumbshots">Thumbnails powered by Thumbshots</a>
-----------------
If you know any other 3rd party thumbnail generator please let me know.