I'm new to pagelime so still trying to figure out best practices. One of the big requirements for many of our clients is an editable image gallery. I've seen the posts about the Lightbox type gallery (listing to Chris Coyier's screencast as I type) but it's not really the kind of gallery I'm looking to create.
I know this is going to involve repeating regions but I'm not clear on how to put it all together. The end result is a gallery that looks like this http://accessiblewebsitedesignexamples.com/accessible-gallery.php.
The code looks like this:
<div id="thumbs" class="navigation"><br />
<ul class="thumbs noscript"><br />
<li class="cms-repeat"><br />
<a href="url" title="Aermotor"><br />
<img src="url" alt="" /><br />
</a><br />
<div class="caption">Aermotor</div></p>
<p> <li class="cms-repeat"><br />
<a href="url" title="Blue Bird"><br />
<img src="url" alt="" /><br />
</a><br />
<div class="caption">Blue Bird</div>
... etc.
Do I make each individual element in the li tag cms-editable or the whole li block? What creates the easiest functionality for the end user?
Open to any and all suggestions.