Forum Replies Created

Viewing 6 posts - 25,531 through 25,536 (of 25,536 total)
  • Author
    Posts
  • in reply to: Disable all animations? #700407

    Hi Kevin!

    Try the solution on this thread: https://kriesi.at/support/topic/turn-off-animations/
    Let us know if it works on you :)

    Best regards,
    Nikko

    in reply to: Responsive issue with table #700405

    Hi Kevin,

    This is the workaround that I can suggest, add a custom class to the table (instructions at the bottom) and create another table (this is for the mobile version) add a custom class to it. The idea is the current table will be in desktop, ipad except for mobile and the new table that you will be creating will be shown in mobile but not in desktop.

    To add a custom class in the table Go to Appearance > Editor and open functions.php and find this code:
    // add_theme_support('avia_template_builder_custom_css');
    and replace it with
    add_theme_support('avia_template_builder_custom_css');
    then save it.

    Edit the table and at the bottom you should see Custom Css Class add this in it: hide-mobile and Save

    Create a new table and in the Custom Css Class add: hide-desktop, (add contents) then Save and Update

    Go to Enfold Theme Options > General Styling > Quick CSS and add this code:

    .hide-desktop{
        display: none;
    }
    
    @media only screen and (max-width:767px) {
        .hide-desktop{
            display: block;
        }
    
        .hide-mobile {
            display: none;
        }
    }

    and Save

    I hope you find this helpful :)

    Best regards,
    Nikko

    in reply to: remove title from YouTube embed #700394

    Hi m!

    Don’t use the Video module, use Text Block the in the Content Editor make sure it is using Text not Visual. Then paste the youtube embed code:
    <iframe width="1500" height="844" src="https://www.youtube.com/embed/ryMF4YUwahQ?feature=oembed&showinfo=0" frameborder="0" allowfullscreen>
    You will notice I have added &showinfo=0 at the end. :)

    Cheers!
    Nikko

    in reply to: SOLVED Call to undefined function avia_is_burger_menu() #700385

    Hi cherojo,

    Glad that it’s fixed. :) Looks like the file might have been corrupted during update, sometimes it happens if there’s an interruption and the file is not completely updated usually you will notice that the file is not the same size as the update.

    Cheers!
    Nikko

    in reply to: Grid Row Anordnung und Priorität auf Handys #700380

    Hi MaktubJolie!

    Yes, it’s possible. Here is the concept of the fix: duplicate/clone 2nd,4th row and so on or those that have text-image arrangement and have the clone be in text-image arrangement, the original will be shown on desktop and hidden on mobile while the 2nd row will be hidden on desktop and shown in mobile. In order for you to do so, you need to do the following:

    Go to Appearance > Editor and open functions.php and find this code:
    // add_theme_support('avia_template_builder_custom_css');
    and replace it with
    add_theme_support('avia_template_builder_custom_css');
    then save it.

    Go to the page with gridrows you want to arrange on mobile and duplicate the even rows (2nd,4th, so on)

    Edit the original Grid Row and at the bottom you should see Custom Css Class add this in it: hide-mobile and Save

    Edit the cloned Grid Row and in the Custom Css Class add: hide-desktop then Save and Update

    Go to Enfold Theme Options > General Styling > Quick CSS and add this code:

    .hide-desktop{
        display: none;
    }
    
    @media only screen and (max-width:767px) {
        .hide-desktop{
            display: block;
        }
    
        .hide-mobile {
            display: none;
        }
    }

    and Save

    Hope this helps. :)

    Regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko. Reason: formatting

    Hi dominiquehurley!

    Kindly add this code in Quick CSS (located under Enfold Theme Option > General Styling):

    .page-id-18694 #av_section_1 .container {
        padding-top: 0 !important;
    }

    Hope this helps :)

    Regards,
    Nikko

    • This reply was modified 8 years, 2 months ago by Nikko.
Viewing 6 posts - 25,531 through 25,536 (of 25,536 total)