I'm trying to implement a very basic photo slider for my Tumblr page. I have some basic knowledge of HTML and coding with Tumblr, all self-taught, and everything has been swell up 'til now. But working with the {Photoset} block is proving to be a little confusing.
I'm trying to use the {Photos} block, which renders each photo of a photoset as if they were by themselves, with the ReallySimple slider. {PhotoURL-HiRes}, etc. are all fed from Tumblr. Here's what I have so far:
JQuery:
$(document).ready(function () {
$('#slideshow-div').rsfSlideshow();
});
HTML:
<div id="slideshow-div">
<!--
Set up an initial slide -- this provides an image for users without JavaScript.
Notice that we've also added the caption for the first slide.
-->
<div class="slide-container">
<img src="{PhotoURL-HighRes}"
{block:Caption}alt="{Caption}"{/block:caption}
title="This is a caption for the first slide" />
<span class="slide-caption">{block:Caption}{Caption}{/block:Caption}</span>
</div>
There's some CSS, too. This is all rendered between {block:Photos}{/block:Photos}. What am I doing wrong?
EDIT: A picture is worth a thousand words so a webpage must be worth like a million or something. Here's the result of my poor understanding lol: http://ko-51.tumblr.com/
Here's a link to the slider and how it SHOULD function: http://reallysimpleworks.com/slideshow