I have a problem when rendering my theme. I render the title of a collection with an H2 tag and the description of the collection with an P tag.
<section class="col-span-3 md:col-span-12 lg:col-span-3">
<h2 class="text-2xl">{{ collection.title }}</h2>
<p class="font-light text-md">{{ collection.description }}</p>
</section>
All this code is inside a for loop, to run though all the collections.
When shopify renders creates empty P tag and change the tag description from P to H2 and ignores the styles.
