Forum Replies Created
-
AuthorPosts
-
Hi Yigit,
Thanks man. It was the Yoast SEO plugin not playing nicely.
I should have tried that :/
Thanks a lot!
Rgds,
S
February 20, 2014 at 8:58 am in reply to: Fixed side bar disappears when scrolling past icon list. #226640Manged 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;
}February 20, 2014 at 8:54 am in reply to: Fixed side bar disappears when scrolling past icon list. #226638I 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.
February 20, 2014 at 8:47 am in reply to: Fixed side bar disappears when scrolling past icon list. #226636Not 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 11 years, 9 months ago by
Siegoboy.
-
This reply was modified 11 years, 9 months ago by
-
AuthorPosts
