Moving flimstrip to bottom of the slideshow

prabhusrajanprabhusrajan Registered Users Posts: 13 Big grins
edited August 16, 2009 in SmugMug Support
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

Comments

  • AndyAndy Registered Users Posts: 50,016 Major grins
    edited August 16, 2009
    Hello, sorry, you're confusing Filmstrip Style with slideshow style. There's not a way to move the thumbnails in slideshow style, I'm very very sorry.
  • prabhusrajanprabhusrajan Registered Users Posts: 13 Big grins
    edited August 16, 2009
    Andy wrote:
    Hello, sorry, you're confusing Filmstrip Style with slideshow style. There's not a way to move the thumbnails in slideshow style, I'm very very sorry.

    No problem Andy, thanks for your help!
Sign In or Register to comment.