Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #247371

    Hi,
    i found the following bugs:

    – In Avia editor, when i put a video background (color section) and an embedded video on the same page, if i play the embedded one, the video background stops and never resumes, neither the video slider. In my case, i would prefer that when the embedded video starts, this will mute the rest of the videos, but not stop them.

    – I also miss a poster image for the embedded videos.

    – In the same editor, if i write in a text box an “a” tag around a “div” tag, it disappears after saving, when re-open the text box.
    For example:
    <a href="http://mydomain.com"><div class="mystyle">HELLO</div></a>
    Becomes:

    &nbsp;
    <div class="mystyle">HELLO</div>
    &nbsp;

    What am i doing wrong?

    Thanks in advance

    #247372
    This reply has been marked as private.
    #248059

    Hey!

    1 + 2) I marked this thread for Kriesi’s attention.

    3) Afaik you shouldn’t wrap block elements into inline elements. Try to use a “span” element instead like:

    
    <a href="http://mydomain.com"><span class="mystyle">HELLO</span></a>
    

    Best regards,
    Peter

    #250576

    Thanks for reply, i’ve founded another issue:
    Buttons and embedded videos don’t work in tablets or mobiles. I mean, yes on scrolling color sections, not in parallax/fixed sections.
    I’d thank a fix as soon as possible…

    #250602

    Hey!

    Do you have an example for the non-working buttons?

    Best regards,
    Devin

    #252103
    This reply has been marked as private.
    #253941

    The buttons are working as intended but there is some hidden limitations you are running into. The large buttons have a minimum width of 127px so when the 1/5 column shrinks down the buttons inside are too big for the container and overlap.

    Without the minimum width they would get too small and wrap but you can play with the values if you want:

    
    .avia-button.avia-size-large {
    padding: 15px 30px 13px;
    font-size: 13px;
    min-width: 127px;
    }
    
Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.