Okay
  Public Ticket #3049688
Blog Post Shadow
Closed

Comments

  •  1
    Erik started the conversation

    WHEN I HOVER THE POST, how do I remove the box shadow and move up animation of featured image with the blog on the blog page?

  •  8,839
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .post-area.featured_img_left .post:hover .post-featured-img-wrap:before {
        opacity: 0 !important;
    }
    .post-area.featured_img_left article:hover .article-content-wrap .post-featured-img-wrap {
        -webkit-transform: translateY(0px) !important;
        transform: translateY(0px) !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Erik replied

    Fixed. Thank you.