I have 4 photos attached (image advanced) to each CPT and I am having issues with displaying images in an UL list "inline" or horizontally they just want to stack vertically, what am I missing ?
{% for item in post.puppy_photos %}
<ul style="list-style: none;"><li style="display: inline;">
<a href="{{ item.large.url }}" > <img src="{{ item.thumbnail.url }}" width="{{ item.thumbnail.width }}" height="{{ item.thumbnail.height }}" alt="{{ item.thumbnail.alt }}"> </a>
</li></ul>
{% endfor %}
Thanks for any tips!