Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Return (Enter) Not working in content editor. #231774

    Hi Yigit,

    Thanks man. It was the Yoast SEO plugin not playing nicely.

    I should have tried that :/

    Thanks a lot!

    Rgds,

    S

    in reply to: Fixed side bar disappears when scrolling past icon list. #226640

    Manged to entirely remove all bugs at the cost of removing all animations with the following code:

    .avia-gallery .avia_start_animation{
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    }

    in reply to: Fixed side bar disappears when scrolling past icon list. #226638

    I removed the “Show animation on page scroll” from the image gallery which now prevents the fixed side nav from disappearing but still on page load there is a flicker. Really frustrating.

    in reply to: Fixed side bar disappears when scrolling past icon list. #226636

    Not 100% happy with the result but managed to stop it from disappearing by adding the following code to my child themes CSS:

    .avia_transform .avia-icon-list .iconlist_icon {
    opacity: 1 !important;
    -moz-transform:scale(1) !important;
    -webkit-transform:scale(1) !important;
    -o-transform:scale(1) !important;
    transform: scale(1) !important;
    }

    .avia_start_animation .iconlist_icon{
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    animation: none !important;
    }

    • This reply was modified 10 years, 9 months ago by Siegoboy.
Viewing 4 posts - 1 through 4 (of 4 total)