I would like to increase the number of images from 5 to 7. I added the additional lines on the slideshow-static.php (under apps\library\), but it is not working.
Should I change anything else?
Thanks.
I would like to increase the number of images from 5 to 7. I added the additional lines on the slideshow-static.php (under apps\library\), but it is not working.
Should I change anything else?
Thanks.
Did you ever find a solution to this issue? I'm looking to workaround this...
I found a solution...
HEADER.PHP - original text:
function(){
$('ul#portfolio').innerfade({
speed: 1000,
timeout: 3500,
type: 'sequence',
containerheight: '<?php echo $slideshow_height; ?>px'
});
HEADER.PHP - modified text:
function(){
$('div#portfolio').innerfade({
speed: 1000,
timeout: 3500,
type: 'sequence',
containerheight: '<?php echo $slideshow_height; ?>px'
});
--- AND HERE ---
SLIDESHOW-STATIC.PHP - original text:
<ul id="portfolio">
SLIDESHOW-STATIC.PHP - modified text:
<div id="portfolio">
<img src="<?php bloginfo('stylesheet_directory'); ?>/images/slideshow/image1.jpg" alt="<?php bloginfo('name'); ?>" />
</div>
so another words change the UL to DIV and remove the LI
hey this is exactly what i need to do. im very new to this so forgive my ignorance... i cant find where SLIDESHOW-STATIC.PHP is? its not on the list on the right under editor... where i found HEADER.PHP. any ideas?
thanks very much
This topic has been closed to new replies.