Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1364012

    carbon14
    Participant

    Hi. On my site http://www.levelpersonal.no I have four services feature box with icon animations. How do I remove that effect on mobile devices.

    #1364024

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! To remove the animation in smaller screens, please add the following css code in the customizer, Appearance > Customize > Custom > CSS

    @media(max-width: 767px){
      .x-feature-box .x-feature-box-graphic-outer,
      .x-feature-box .x-feature-box-graphic-outer.animated-hide {
        opacity: 1 !important;
        transition: none !important;
      }
    }

    Hope this helps. Please let us know how it goes.