Forum Replies Created
-
AuthorPosts
-
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,
NikkoHi 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,
NikkoHi 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!
NikkoOctober 18, 2016 at 6:36 am in reply to: SOLVED Call to undefined function avia_is_burger_menu() #700385Hi 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!
NikkoHi 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
October 18, 2016 at 4:46 am in reply to: Too much white space at top of page using Avia Builder Layout #700354Hi 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.
-
AuthorPosts