Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #375058

    My client noticed an error on firefox, on the page below
    I just updated to firefox 34.0.5 to check it and the rollover/hover title/captions
    on the masonry gallery are not working correctly.
    It was fine before and is also fine on other browsers.
    Can you see what’s wrong?
    thanks
    Nancy

    • This topic was modified 9 years, 10 months ago by Munford.
    #375326

    Hey Munford!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia-mozilla .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content { transform-style: inherit; }

    Regards,
    Yigit

    #375587
    This reply has been marked as private.
    #376263

    Hey!

    in your sourcecode I can see that you did not add Yigit’s code correctly. You still have this:

    .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content {
    transform-style: preserve-3d;
    }
    

    please change it as Yigit said and maybe you need to add an !important:

    .avia-mozilla .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content { 
    transform-style: inherit !important; 
    }
    

    Best regards,
    Andy

    #376395

    sorry, I don’t see where this code is:

    .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content {
    transform-style: preserve-3d;
    }

    ?
    __
    yigit said “add” the code, not to replace anything.
    should I still have this code:
    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation: none; /* Fx 5+ */
    animation: none; /* IE 10+ */
    }
    ?
    thanks

    #376708

    ah I figured it out, thanks.
    was not sure where that code was coming from or where to change it but I added this:
    .avia-mozilla .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content {
    transform-style: inherit!important;
    }

    .avia_desktop.avia_transform3d .av-caption-on-hover .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content{
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: center bottom;
    -moz-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    transform: rotateX(120deg);
    -webkit-transform-style: preserve-3d;
    transform-style: inherit!important;
    }

    and it seemed to work. I have another problem now – the zoom animation seems unstable on firefox – if you hover over the images the zoom moves a bit. http://www.cfcnorge.com/item/human-rights-democracy/ I have disable some of the animation with this:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{
    -webkit-animation: none; /* Safari 4+ */
    -moz-animation: none; /* Fx 5+ */
    animation: none; /* IE 10+ */
    }

    .av-masonry-entry {
    opacity: 1 !important;
    visibility: visible !important;
    }

    .avia_desktop .av-hover-overlay-active .av-masonry-image-container {
    opacity: 1!important;
    }

    but this:
    .av-masonry-image-container:hover {
    transform: none !important;
    }

    which was supposed to disable the zoom did not work. I am not sure what is causing the problem in firefox, since I deleted that last code and it is fine in other browsers.
    any suggestions?
    Thanks very much
    Nancy

    • This reply was modified 9 years, 10 months ago by Munford.
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘firefox update problem masonry rollover’ is closed to new replies.