Okay
  Public Ticket #246274
How to Make IMAGES NOT FADE IN?
Closed

Comments

  • Echo started the conversation

    I have some sections of my website that I DO NOT WANT THE IMAGES to fade in when scrolling down.

    How do I turn fading images off in certain areas?

    Seems like that should be an option in the image control panel along with "fade in", "grow in", etc.

    I tried putting none or "0" in the Animation Delay field but still the image fades in.

    Thank you.

    -Echo


  •  989
    ThemeNectar replied

    Hey Echo!

    You could always use the "Add Media" button in a text box to place a standard image without an animation - but to avoid redoing anything, add this into the custom css box located in your Salient Options panel:

    .img-with-animation {
      opacity: 1!important;
    }
    

    Cheers


  •   Echo replied privately
  •  8,447
    Tahir replied

    Hey Again!

    If you want to turn it off for a particular row you can add an extra class for example "dummy-class" and then use this custom css :

    .dummy-class .img-with-animation {
      opacity: 1!important;
    }
    
    
    

    Cheers


    ThemeNectar Support Team 

  • Echo replied

    Thank you Tahir!