Creating a slider using the following code:
<ul>
{% for slide in page.header.slides %}
<li>{{ page.media.images[slide.image].html('', slide.description) }}</li>
{% endfor %}
</ul>
I'd like to add a style to the img tags. Is there documentation on how to do this?