Exploring the world of Bootstrap cards and trying to create a unique design with colored background and circular image in the header, something like this:
https://i.sstatic.net/BZn3k.png
However, after using some code examples:
<!-- Background color -->
<div class="card-up aqua-gradient"></div>
<!-- Avatar -->
<div class="avatar mx-auto white">
<img src="https://mdbootstrap.com/img/Photos/Avatars/img%20%2831%29.jpg" class="rounded-circle img-responsive" alt="woman avatar">
</div>
<!-- Content -->
<div class="card-body">
<!-- Name -->
<h4 class="card-title font-weight-bold">Martha Smith</h4>
<hr>
<!-- Quotation -->
<p><i class="fas fa-quote-left"></i> Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eos,
adipisci</p>
</div>
The final output seems to be missing some key elements:
https://i.sstatic.net/I53vc.png
Can you achieve this specific card layout in Bootstrap 4? If yes, what tweaks do I need to make to have it working properly? Appreciate any assistance provided.