Moving flimstrip to bottom of the slideshow
prabhusrajan
Registered Users Posts: 13 Big grins
Hello,
I have followed the instructions in the post http://www.dgrin.com/showthread.php?t=135057 by adding the code
#filmstrip #photos {display:none;} in CSS
and
//Move flimstrip to the bottom
YE.onDOMReady(PutFilmstripBelow);
function PutFilmstripBelow()
{
if (YD.hasClass(document.body, "filmstrip"))
{
var moveWrapper = document.getElementById("moveWrapper");
var photos = document.getElementById("photos");
if (moveWrapper && photos)
{
var photosObj = photos.parentNode.removeChild(photos);
moveWrapper.parentNode.insertBefore(photosObj, moveWrapper);
photos.style.display = "block";
}
}
}
in bottom JavaScript. Still the flimstrip is showing up on the top. Can you please help? Here is the URL: http://www.rajaphotography.com/gallery/9280166_TpBxh
Thanks,
-Prabhu S
I have followed the instructions in the post http://www.dgrin.com/showthread.php?t=135057 by adding the code
#filmstrip #photos {display:none;} in CSS
and
//Move flimstrip to the bottom
YE.onDOMReady(PutFilmstripBelow);
function PutFilmstripBelow()
{
if (YD.hasClass(document.body, "filmstrip"))
{
var moveWrapper = document.getElementById("moveWrapper");
var photos = document.getElementById("photos");
if (moveWrapper && photos)
{
var photosObj = photos.parentNode.removeChild(photos);
moveWrapper.parentNode.insertBefore(photosObj, moveWrapper);
photos.style.display = "block";
}
}
}
in bottom JavaScript. Still the flimstrip is showing up on the top. Can you please help? Here is the URL: http://www.rajaphotography.com/gallery/9280166_TpBxh
Thanks,
-Prabhu S
0
Comments
Portfolio • Workshops • Facebook • Twitter
No problem Andy, thanks for your help!