Viewing 30 posts - 1 through 30 (of 49 total)
  • Author
    Posts
  • #1021538

    nice thing – but i guess there is a css rule lost for:

    .avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner, 
    .avia-icongrid-flipbox li .avia-icongrid-flipback .avia-icongrid-inner {
        backface-visibility: hidden;
    }

    etc.
    see your own testpage: https://kriesi.at/themes/enfold-one-page-agency/#services

    but i think there was a global mismatch: because i guess the second heading (sub heading) is meant for the backface. isn’t it?

    #1022381

    Hey Guenter,

    We have reported that out :)

    Best regards,
    Basilis

    #1022597

    maybe you just repeat the rules set on icongrid.css and add only the .avia-icon-grid-inner thing :

    .avia-icongrid-flipbox li .avia-icongrid-front,
    .avia-icongrid-flipbox li .avia-icongrid-flipback,
    .avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner,
    .avia-icongrid-flipbox li .avia-icongrid-flipback .avia-icongrid-inner {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        height: 100%;
    }

    this looks nicer than only add the hidden thing

    #1023542

    Hi,

    I don’t really see much difference when I add that css code. :)

    Best regards,
    Ismael

    #1024328

    do you see that demo page of enfold: https://kriesi.at/themes/enfold-one-page-agency/#services

    #1024337

    Is there a way to disable the Flip ? I only need the Icon & title and have no Content to add :-)

    #1024380

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    .avia-icongrid-flipbox li {
    pointer-events: none !important;
    }

    Best regards,
    Mike

    #1024466

    Works like a charm! Thanks Mike :-)

    #1024480

    Hi,
    Glad to assist, thanks for using Enfold.

    Best regards,
    Mike

    #1027922

    Aha – i see it is only a firefox problem. But even then you have to fix it. On Safari and Chrome it works fine on firefox there is that behavior like the image above shows it.

    #1027975

    Hi,
    Opps, I didn’t look at the top of this thread :)

    Best regards,
    Mike

    • This reply was modified 6 years ago by Mike. Reason: solution already posted
    #1028001

    …and what do I need to do now exactly where, what in which file please?

    #1028011

    Hi,
    Please try adding @Guenni007 css to \enfold\config-templatebuilder\avia-shortcodes\icongrid\icongrid.css around line 250

    .avia-icongrid-flipbox li .avia-icongrid-front,
    .avia-icongrid-flipbox li .avia-icongrid-flipback,
    .avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner,
    .avia-icongrid-flipbox li .avia-icongrid-flipback .avia-icongrid-inner {
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        height: 100%;
    }

    Or try this css at the same location:

    .avia-icongrid-flipbox li .avia-icongrid-flipback {
        opacity: 0;
        visibility: hidden;
    }
     .avia-icongrid-flipbox li:hover .avia-icongrid-front,
     .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{
        opacity: 0;
        visibility: hidden;
    }
    .avia-icongrid-flipbox li:hover .avia-icongrid-flipback,
    .avia-icongrid-flipbox li.av-flip .avia-icongrid-flipback{
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
          opacity: 1;
        visibility: visible;
    }
    

    Best regards,
    Mike

    #1028012

    thanks, but with a theme update this will be gone, right?
    Can I add this to my custom.css, too?

    #1028019

    Hi,
    I believe @Basilis reported this and it’s going to be included in the next update. So you can apply it to the parent theme files.
    I will check though.

    Best regards,
    Mike

    #1030084

    Hey,
    unfortunately none of the CSS works on firefox. This Icon Grid thing is simply unuseable. Has anyone a solution that works? My customers are rightly upset and I have to find another solution instead of the Icon Grid.

    Cheers
    Dieter

    [UPDATE]: Inserted the CSS via Quick CSS and it works! However… Lie down again …:-)

    #1030198

    Hi,
    @Dieter Greven
    I’m not sure what you mean by

    Inserted the CSS via Quick CSS and it works! However… Lie down again…:-)

    Did you try adding this css via FTP to \enfold\config-templatebuilder\avia-shortcodes\icongrid\icongrid.css around line 250?
    Please open a new thread so we can assist, and add admin login and FTP access, but as this is not your thread your info would not private.

    Please post here the link to your new thread.

    Best regards,
    Mike

    #1030426

    Hi Mike,
    of course I tried adding the css via FTP to \enfold\config-templatebuilder\avia-shortcodes\icongrid\icongrid.css. Several times, cleaning cache and all that stuff. Didn’t work. But as I said, finally I pasted the css in the Quick CSS field and it works. So at least no further action required. Thank you.

    Regards
    Dieter

    #1030697

    Hi,
    That is good news, have a great day & thanks for using Enfold.

    Best regards,
    Mike

    #1038971

    hey there,

    the icon gris has a few problems more :-)

    in the text-field the list-text does not work correctly either. with your css and my css i could help myself. thank you :-)

    but will there be a solution in the next update?

    btw: my css for the icon grid in my custom css:

    .av_icongrid_title {
    font-size: 30px !important;
    }

    .avia-icongrid li .avia-icongrid-content {
    padding: 10px !important;
    }

    .avia-icongrid-flipback .avia-icongrid-inner li{
    width: auto !important;
    }

    .avia-icongrid-flipback ul,
    .avia-icongrid-inner li{
    display: list-item !important;

    }

    .avia-icongrid li {
    list-style: initial !important;
    }

    .avia-icongrid-flipbox li .avia-icongrid-flipback {
    opacity: 0;
    visibility: hidden;
    }
    .avia-icongrid-flipbox li:hover .avia-icongrid-front,
    .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{
    opacity: 0;
    visibility: hidden;
    }
    .avia-icongrid-flipbox li:hover .avia-icongrid-flipback,
    .avia-icongrid-flipbox li.av-flip .avia-icongrid-flipback{
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
    }

    #1039212

    Hi,
    Thanks for sharing your solution, this issue has been reported and we expect it to be corrected for the next update.

    Best regards,
    Mike

    #1041648

    Everything fine now on Enfold 4.5.1

    #1041671

    Hi,
    Thanks, that is great news.

    Best regards,
    Mike

    #1058587

    hi guys, seems that the linking of the grid flip doesn’t work either – i’ve inserted a button and it won’t link

    #1059060

    Hi ccawcutt,

    Where can we see the problem?

    Best regards,
    Rikard

    #1070034

    I’m trying to use the icon grid which i think is really cool and gives some movement on the page, but i want to put a link in the text and not the title, and they don’t work. Is it a bug or is not possibile? Is it fixable?

    #1070165

    Hi,

    @BlueSolution
    Do you mean that you want the link in the content on the flip side, like this?
    2019-02-21-200403
    It’s working for me.

    Best regards,
    Mike

    #1070272

    It shows me like it has the link but clicking it it doesn’t go anywhere

    flip grid

    (look link)

    • This reply was modified 5 years, 9 months ago by BlueSolution.
    #1070338

    Hi,
    Thanks for the link, try changing your link from this:

    tel:5555555

    to this:

    tel//:5555555

    Best regards,
    Mike

    #1070345

    it doesn’t seem to work
    i have this link inside which i always use : Compila il contactform oppure chiama il numero 0498808790

    And it the first grid the link for the map doesn’t work : Portami in Studio

Viewing 30 posts - 1 through 30 (of 49 total)
  • You must be logged in to reply to this topic.