place the titles of featured posts under their images
- The topic ‘place the titles of featured posts under their images’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
So this is the css to show or hide the title of the featured posts.
.trending .blurbs li h3 {
opacity: 1;
bottom: 0;
How can I place it right under the featured image? (currently, it’s in the image)
The blog I need help with is: (visible only to logged in users)
You can do that with the following css:
.trending .blurbs li h3 {
position: initial;
order: 2;
}
.trending .blurbs a,
.trending .blurbs a:visited {
display: flex;
flex-direction: column;
}
That’s awesome. I’ve applied this code to the mobile view. Thank you.
Btw, I’ve noticed that there is an alt text effect on the images of the 5 featured posts. How can I turn it off?