Okay
  Public Ticket #2557197
Hover Color on Recent Posts
Closed

Comments

  • Veronica started the conversation

    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!

  •  2,719
    Andrew replied

    HiĀ Veronica,

    Use the following custom css:

    .blog-recent .col img:hover {
        opacity: 0.2;
    }
    .blog-recent .col:hover {
        background: #f5e137;
    }
    

    Thanks.