Comments on 24. || Reigns All Comments Start of Thread Parent

Hi there! Sorry for the late reply

Here is a little snippet for the edited item block:


<!-- 
====================================
 ITEM BLOCK
====================================
-->
<div class="col-12 col-lg-6 p-1">
 <div class="card p-2 h-100" style="border-radius: 0; border-width: 2px; font-size: 13px;">
 
 <div class="card rounded-0 p-1 mx-auto mb-2 bg-faded border-left-0 border-right-0" style="height: 120px; width: 120px;">
 <div class="h-100" style="
 
 background-image: url('URLHERE');
 background-size: cover;
 background-position: center;"></div>
 </div>
 
 <div class="card bg-faded border-top-0 border-bottom-0 p-1 px-2" style="border-radius: 0; border-style: double; border-width: 10px;">
 <p style="color: #C9AB56; text-shadow: 4px 3px 0px rgba(201, 171, 86, 0.2); font-family: Georgia, serif; font-weight: 800; font-variant: small-caps; font-size: 16px;"><span class="pull-right">
 
 <!-- FA ICON == Replace "sword" with other icon name -->
 <i class="far fa-sword"></i></span>
 
 Item Name
 </p>
 </div>
 
 <div class="p-1 text-justify">
 
 <!-- ITEM RARITY -->
 <div class="row no-gutters justify-content-between">
 <div class="col-auto text-muted text-uppercase">
 
 Rarity
 
 </div>
 <div class="col-auto">
 <div class="row no-gutters p-1" style="color: #C9AB56; text-shadow: 4px 3px 0px rgba(201, 171, 86, 0.2); font-size: 13px;">
 
 <!-- STARS == Use "FAS" for SOLID and "FAR" for EMPTY -->
 
 <i class="fas fa-star fa-fw"></i>
 <i class="fas fa-star fa-fw"></i>
 <i class="fas fa-star fa-fw"></i>
 <i class="far fa-star fa-fw"></i>
 <i class="far fa-star fa-fw"></i>
 
 </div>
 </div>
 
 </div>
 
 <!-- ITEM DESCRIPTION -->
 <p>
 Item description. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.
 </p>
 </div>
 
 </div>
</div>

You can replace all of the item blocks with this one, it will look like this:

image.png

Tysm! :DD