Card
On this page
Sources
PrestaShop UIKit
Original bootstrap component used in the PrestaShop UIKit:
1<div class="card" style="width: 18rem;">
2 <img class="card-img-top" src="..." alt="Card image cap">
3 <div class="card-body">
4 <h5 class="card-title">Card title</h5>
5 <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
6 <a href="#" class="btn btn-primary">Go somewhere</a>
7 </div>
8</div>
PUIK
Basic Use
For any card component that you use, replace the structure above with the following structure:
1<div class="puik-card">
2 <h3 class="puik-h3">Card title</h3>
3 Card content
4</div>