I have a Recent Posts Element with a Default Style on my site.
I was curious if it's possible to add custom CSS to my blog post so that the images generated from the Recent Posts element turnĀ #f5e137 with a 20% opacity when you hover over them to imply that they're clickable links.
Hello-
I have a Recent Posts Element with a Default Style on my site.
I was curious if it's possible to add custom CSS to my blog post so that the images generated from the Recent Posts element turnĀ #f5e137 with a 20% opacity when you hover over them to imply that they're clickable links.
Thanks!
HiĀ Veronica,
Use the following custom css:
.blog-recent .col img:hover { opacity: 0.2; } .blog-recent .col:hover { background: #f5e137; }Thanks.