I'm facing an issue with my product cards where the text mentioning "free shipping" is not aligned properly when there are no ratings. How can I ensure that all free shipping texts are positioned consistently on the card?
Should I modify the position attribute or wrap the text to correct its alignment?
<div class="body-info">
...
<div class="product-rating">
<i class="glyphicon glyphicon-star"></i>
<i class="glyphicon glyphicon-star"></i>
<i class="glyphicon glyphicon-star"></i>
<i class="glyphicon glyphicon-star"></i>
<i class="glyphicon glyphicon-star-empty-half"></i>
<span>4.5/5</span>
</div>
<a href="free-shipping">free shipping available</a>
</div>
Could you suggest which position attributes would be appropriate in this case?
Thank you for your assistance!
EDIT: Attached a screenshot of the problem for reference.
I should also note that if the product has no ratings, the "product-rating div" does not display.