Archived topic
Image Overlay
1 reply · Started by Ram on April 10, 2020
Viewing posts 1–2 of 2
Is there any way to add a black overlay over the image? so that the text will look brighter.
Hi there,
try adding this CSS:
.post-image {
position: relative;
}
.post-image:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
}
This archived topic is closed to new replies.