Okay
  Public Ticket #2843873
Remove/Change animation when using "Recent Posts" block with Style "Multiple Large Featured"
Closed

Comments

  •  23
    alberteck started the conversation

    Hi

    When using "Recent Posts" block with Style "Multiple Large Featured", the text of the blog post being shown along with its Read Article button, by default have the animation of sliding up.

    Can we remove that animation and make the text and the buttons with the same animation as the background image? (I think the background image fades? Not sure)

  •   alberteck replied privately
  •  8,860
    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):

    .nectar-recent-posts-single_featured.multiple_featured .recent-post-container h2 a > span span {
        -webkit-transform: translate3d(0, 0%, 0);
        transform: translate3d(0,0%, 0);
    }
    .nectar-recent-posts-single_featured.multiple_featured .grav-wrap, .nectar-recent-posts-single_featured.multiple_featured .nectar-button {
        transform: translateY(0px) !important;
    }
    .nectar-recent-posts-single_featured.multiple_featured .recent-post-container h2 a > span span {
        opacity: 0;
    }

    Thanks


    ThemeNectar Support Team 

  •  23
    alberteck replied

    Perfect! Thank you!

  •  8,860
    Tahir replied

    You're Welcome.

    Best 


    ThemeNectar Support Team