> Is their an option of positioning the Captions associated with the images?

The captions for the images are positioned below the image by default.
To change this, you would have to dive into the javascript in /static/
css/imageflow.jss. Search for captionDiv. The JS between lines 218
=and 280 basically creates the layout of the gallery. For example, to
position the captions above the images you would comment line 254
("navigationDiv.appendChild(captionDiv);") and add
"my.ImageFlowDiv.appendChild(captionDiv) &&" to the subsequent if
statement i.e:

if (my.ImageFlowDiv.appendChild(captionDiv) &&
my.ImageFlowDiv.appendChild(imagesDiv) &&
my.ImageFlowDiv.appendChild(loadingP) &&
my.ImageFlowDiv.appendChild(loadingDiv) &&
my.ImageFlowDiv.appendChild(navigationDiv))

You may also need to modify the CSS in /static/css/imageflow.css,
particularly ".imageflow .caption".

> Also, can we change the background - say, use another picture?

Yes. Modify the CSS in /static/css/imageflow.css. Add backgound
property to ".imageflow" at the very top of the CSS.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to