Hi all,
I am new to CouchCMS and already stuck on my first bit of code. I'm trying to create a basic slideshow that cycles through DIV's with background images. I want to be able to upload multiple images, thus creating repeated DIV's with each one having a different background image.
E.g. This is how it should look in the HTML after upload:
Can anyone help?
I am new to CouchCMS and already stuck on my first bit of code. I'm trying to create a basic slideshow that cycles through DIV's with background images. I want to be able to upload multiple images, thus creating repeated DIV's with each one having a different background image.
- Code: Select all
<div style="background-image:url(<cms:editable name='bg_picture' type='image' />);"></div>
E.g. This is how it should look in the HTML after upload:
- Code: Select all
<div id="slideshow">
<div style="background-image:url(images/image-1.jpg);"></div>
<div style="background-image:url(images/image-2.jpg);"></div>
<div style="background-image:url(images/image-3.jpg);"></div>
</div>
Can anyone help?