Hey, I need to have 12 chunks of content (text, image, link) displayed 3 at a time presented randomly on page load with CF... how do I do this? Here's a sample of what the markup looks like.
Code:
<div>
<img src="1.jpg" alt="" />
<span>Text1 <a href="#">Link1</a></span>
</div>
<div>
<img src="2.jpg" alt="" />
<span>Text2 <a href="#">Link2</a></span>
</div>
<div>
<img src="3.jpg" alt="" />
<span>Text3 <a href="#">Link3</a></span>
</div>