Olivia95 Posted May 9, 2020 Share Posted May 9, 2020 Site URL: https://www.kinandfriendscookbook.com/ I have figured out how to make my blog titles overlay on to the image and want to add an overlay over the image so that the white font pops more. If anyone could help that would be amazing. Thanks everyone! Link to comment
tuanphan Posted May 10, 2020 Share Posted May 10, 2020 You mean: Recent Posts? title hidden hover: add image overlay + white title appear? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Olivia95 Posted May 10, 2020 Author Share Posted May 10, 2020 Yes recent post. Yes to image overlay + white title appear. Thank you! Link to comment
tuanphan Posted May 11, 2020 Share Posted May 11, 2020 17 hours ago, Olivia95 said: Yes recent post. Yes to image overlay + white title appear. Thank you! Add to Home > Design > Custom CSS /* show title on hover */ .blog-basic-grid--text { opacity: 0; transition: opacity 0.25s ease-out; } .blog-item:hover .blog-basic-grid--text { opacity: 1; } /* show overlay on hover */ .blog-item .image-wrapper:after { position: absolute; content: ""; background: rgba(0,0,0,0.75); top: 0; bottom: 0; left: 0; right: 0; opacity: 0; transition: opacity 0.25s ease-out; } .blog-item:hover .image-wrapper:after { opacity: 1; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Olivia95 Posted May 13, 2020 Author Share Posted May 13, 2020 Thank you so much! This was it! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.