Okay
  Public Ticket #2499450
Portfolio
Closed

Comments

  •   pimientomedia started the conversation
  •  8,853
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar_fullscreen_zoom_recent_projects .project-slide.prev .bg-outer-wrap .slide-bg, .nectar_fullscreen_zoom_recent_projects .project-slide.next .bg-outer-wrap .slide-bg,.nectar_fullscreen_zoom_recent_projects .project-slide.prev .bg-outer-wrap, .nectar_fullscreen_zoom_recent_projects .project-slide .bg-outer,.nectar_fullscreen_zoom_recent_projects .project-slide.next .bg-outer-wrap {
        transform: scale(1) !important;
        transition: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •   pimientomedia replied privately
  •  1,077
    ThemeNectar replied

    Hey pimientomedia!

    You can further alter the animation to look more streamlined by also adding in the following CSS:

    .nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span span,
    .nectar_fullscreen_zoom_recent_projects .project-slide .project-info a, 
    .nectar_fullscreen_zoom_recent_projects .project-slide .project-info p,
    .nectar_fullscreen_zoom_recent_projects .project-slide.prev .project-info h1 > span span,
    .nectar_fullscreen_zoom_recent_projects .project-slide.next .project-info h1 > span span {
      transition-delay: 0s!important;
    }
    .nectar_fullscreen_zoom_recent_projects .project-slide .bg-outer-wrap .bg-inner-wrap:after {
       opacity: 0.4;
    }
    body .nectar_fullscreen_zoom_recent_projects .project-slide {
      transition: none;
    }
    .nectar_fullscreen_zoom_recent_projects .project-slide .project-info h1 > span span {
       transform 1.2s cubic-bezier(0.4, 0, 0.1, 1);
    }
    

    Cheers