Home Forums WoodMart support forum Setting Featured "HOT" items Reply To: Setting Featured "HOT" items

#166428

Hello,

If you want to decrease the height or width from the existing size, you have to use this ”min-height: 10px;”, “ min-width: 10px;” inside your code. But the shape will disturbed. Also sometimes minimum width can not applied because the font is large enough. So if you want to change the font size you can use “font-size: 10px;” inside your code.

Check the below example:

body .product-labels .featured {
      background-color: pink;
      min-height: 10px;
      min-width: 10px;
     font-size: 10px;
}

Best Regards.