I am trying to add text over top of an image on a 'product card' listing. The top left and top right div classes aren't appearing over top of the image. Here is my code:
.cardcontainer {
position: relative;
}
.top-left {
position: absolute;
top: 8px;
left: 16px;
background-color: black;
color: white;
padding-left: 5px;
padding-right: 5px;
}
.top-right {
position: absolute;
top: 8px;
right: 16px;
background-color: black;
color: white;
padding-left: 5px;
padding-right: 5px;
}
<section class="4u">
<div class="cardcontainer">
<a href="https://{{ jinja image link }}" target="_blank" class="image featured"><img src={{ jinja image source }} alt=""></a>
<div class="top-left">top left text</div>
<div class="top-right">top right text</div>
<div class="textbox">
<!--some stuff here that appears below the image-->
</div>
</div>
</section>
Any ideas? thanks for your help!