https://i.sstatic.net/ffLj8.jpg
My goal is to achieve a specific look, but I seem to be struggling with it. Here's what I currently have:
https://i.sstatic.net/MHcuD.jpg
Below is the code snippet I am working with:
.blog-lockup
max-width: 1000px
margin: 0 auto
.image
position: relative
+size(250px)
img
+size(250px)
strong
position: absolute
top: 60%
left: 0%
+size(70px)
text-align: center
background: $lightred-color
font-family: Verdana
font-size: 14px
font-weight: 400
font-style: italic
color: #FFF
<div class="blog-lockup">
<div class="blog-1">
<div class="image">
<img src="../assets/img/blog/blog-1/thumb.jpg">
<strong>04 SEP</strong>
</div>
<h5>Some Title Text with Love</h5>
<p class="author">by James Vibar</p>
<p>At vero eos et accusamus et iusto odio dignissimos
ducimus qui blanditis praesantium voluptatum deleniti
atque corrupti qtios dolores et quas molestias excepturi
sint occaecati cupiditate non provident</p>
<a href="#">Read More</a>
</div>
</div>
Just FYI, I'm using Sass for this.