I've been struggling with the following code and can't seem to figure out how to make the text break and display below the image similar to a table.
<ul style="display:block inline; list-style:none;">
<li style="display:inline"><img src="BoxCover-01.jpg" /><br />Title 01</li>
<li style="display:inline"><img src="BoxCover-02.jpg" /><br />Title 02</li>
<li style="display:inline"><img src="BoxCover-03.jpg" /><br />Title 03</li>
<li style="display:inline"><img src="BoxCover-04.jpg" /><br />Title 04</li>
<li style="display:inline"><img src="BoxCover-05.jpg" /><br />Title 05</li>
</ul>
Ideally, I want to hide the bullets and have them display inline. The list items should gracefully cascade beneath each other based on the content width as well.
This code will be inserted into a blog post to showcase a collection of nominated films and DVDs.
Any assistance you can provide would be greatly appreciated. Thank you!