Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the late reply, when trying to import your demo I received the errorFailed to load resource: the server responded with a status of 500 () admin-ajax.phpTo work around your server error I uploaded the images to your server and then modified your import file so the images would be installed from your server instead of downgrading from our server, then I uploaded the theme settings file and set your widgets to match the demo and I also set your menu.
Everything seems correct now, please clear your browser cache and check.Best regards,
MikeHi,
Sorry for the late reply, you can try this css:@media only screen and (max-width: 767px) { .avia-table td:before { display: none !important; } }If this doesn’t help then please let us know when we can see your site to target the correct sectors for your site.
Best regards,
MikeHi,
Sorry for the late reply, on Envato the zip file “all files and documentation” also includes files you don’t need, so please extract it on your desktop and look for the folder “enfold” this is the theme files.
You can verify the theme version by opening the “style.css” file inside “enfold” and line 4 will tell you the version number.

Then you can rename your current “enfold” folder to “enfold-old” via ftp and them upload the new “enfold” from your desktop to your site.
If you would like a hand with this then please link to your Envato file via DropBox and include admin login and ftp access in the Private Content area.Best regards,
MikeHi,
Sorry for the late reply, so I added the custom class “three_columns” to your css:.flex_column.av_one_third.three_columns { webkit-transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1); transition: -webkit-transform .15s cubic-bezier(.4,0,.2,1); transition: transform .15s cubic-bezier(.4,0,.2,1); transition: transform .15s cubic-bezier(.4,0,.2,1), -webkit-transform .15s cubic-bezier(.4,0,.2,1); } .flex_column.av_one_third.three_columns:hover { -webkit-transform: scale(1.1); transform: scale(1.1); }then I added the custom class to your columns on your homepage and your portfolio page:

now only the three columns on your homepage and portfolio page grow on hover, please clear your browser cache and check.Best regards,
MikeHi,
Sorry for the late reply, please try going to Enfold Theme Options > Header > Extra Elements > Header Social Icons and choose one of the options to show the social icons in the “top bar”
Then add this css for it to show on mobile:@media only screen and (max-width: 479px) { .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: block; } }Best regards,
MikeHi,
I added this to your custom.css so the font would load from your site and show:@font-face { font-family: 'entypo-fontello'; src: url('https://your-site.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff') format('woff2'), url('https://your-site.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff2') format('woff'), url('https://your-site.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf') format('truetype'); font-weight: normal; font-style: normal; }Please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, if you want to have this on a few pages you can add a css rule for each page-id with a comma like this:#top.page-id-1038 #layer_slider_1, #top.page-id-154 #layer_slider_1, #top.page-id-138 #layer_slider_1 { z-index: 0; }but if it is for all pages that also have the layerslider then use the class “page” without the “id”
#top.page #layer_slider_1
but if it is more complicated we will need to know when you will have this set up so we can figure out the best way to set up the css rules.
If you don’t want to have the overlap on mobile devices then you can wrap your css in a media query like this:@media only screen and (min-width: 768px) { #top.page-id-1038 #layer_slider_1 { z-index: 0; } #top.page-id-1038 #after_layer_slider_1 > div > div > div > div > div { z-index: 99; position: relative; } }Best regards,
MikeHi,
Thanks for the feedback, please try adding two new social icon profiles by following these steps then go to Fontello and upload SVG icon versions of your flags to be converted into the icon font:

Then these will be next to your other social icons and you will be able to add links in the social profiles in the theme options.Best regards,
MikeHi,
Sorry for the late reply, I adjusted the height of the sub-menu and the icon and menu title so they are all just about on the same line. It may be down just a little but once all of the menu items have the icon they will look the same.
Please clear your browser cache and check.
Here is the css used:#menu-item-115 span.av-icon-char::after { content: "Accueil"; font-size: 15px !important; display: block; line-height: 40px; top: 100px !important; position: absolute; } #menu-item-115 > a { height: 215px; line-height: 215px; } #menu-item-115 > a > span.avia-menu-text > span { line-height: 215px; }Best regards,
MikeHi,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#main > div.main_color.container_wrap_first.container_wrap.sidebar_left > div { background-color: gray; } #main > div.main_color.container_wrap_first.container_wrap.sidebar_left > div > main { background-color: #fff !important; }After applying the css, Please clear your browser cache and check the url in the Private Content area.
Best regards,
MikeHi,
Sorry for the late reply and thanks for the video, I believe what you are asking is to have the header disappear on scroll down and then show on scrolling up like Rolex.com – correct?
We don’t have a built-in way to do this but this script has worked for others:
Try adding this code to the end of your functions.php file in Appearance > Editor:function show_header_scroll_down(){ ?> <script> ( function( $ ) { 'use strict'; var $window = $( window ); var lastScrollTop = 0; var $header = $( '#header_main' ); var headerBottom = $header.position().top + $header.outerHeight( true ); $window.scroll( function() { var windowTop = $window.scrollTop(); // Add custom sticky class if ( windowTop >= headerBottom ) { $header.addClass( 'myprefix-maybe-sticky' ); } else { $header.removeClass( 'myprefix-maybe-sticky' ); $header.removeClass( 'myprefix-show' ); } // Show/hide if ( $header.hasClass( 'myprefix-maybe-sticky' ) ) { if ( windowTop <= headerBottom || windowTop < lastScrollTop ) { $header.addClass( 'myprefix-show' ); } else { $header.removeClass( 'myprefix-show' ); } } lastScrollTop = windowTop; } ); } ( jQuery ) ); </script> <?php } add_action('wp_footer', 'show_header_scroll_down');then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.myprefix-maybe-sticky { position: fixed !important; top: -100px; width: 100%; z-index: 999; opacity: 0; background: #fff; transition: 0.3s all; box-shadow: 0 2px 3px rgba(0,0,0,0.15); } .myprefix-show { top: 0; opacity: 1; }Please see the video in the Private Content area.
If this doesn’t work for you it’s probably because you have a gtag script errorUncaught SyntaxError: Invalid or unexpected tokenplease include an admin login so we can adjust.Best regards,
MikeHi,
Sorry for the late reply, looking at your gallery in the middle of your homepage with the “london eye” I believe what you would like to do is have the gallery image’s white border turn the red on hover. So please remove this css:#top div .avia-gallery { background-color: red; }and try this instead:
#top.home div .avia-gallery .avia-gallery-big:hover { background-color: red; } #top.home .avia-gallery .avia-gallery-thumb a img:hover{ background-color: red; }Expected results, large image on hover:

small image on hover:

Is this what you had in mind?Best regards,
MikeHi,
Thanks for the link, but your site seems to be down right now, please check.Best regards,
MikeHi,
To remove your empty menu area on your homepage we can hide the ID and adjust the height with this css:#top.home #header_main_alternate { display: none !important; } .html_header_top.html_header_topbar_active.html_header_sticky.html_large.html_bottom_nav_header #top.home #main { padding-top: 158px !important; }To change the image of “nordic” on hover, please try this css:
#top.home .flex_column.av_one_half.nordic:hover { background: url(https://[see-below]/wp-content/uploads/2014/12/f-G-Nepal-blue-diamond.jpg) !important; background-repeat: no-repeat !important; background-size: cover !important; background-position: 50% 50% !important; }please change the domain “[see-below]” in the css above with the domain in the Private Content area, or use your own image url.
Best regards,
MikeHi,
Thank you for the screenshots, I first looked at one of your pages that was meant to have two columns but only showed one full-width, link in the Private Content area. Your columns are created by a grid row, but your grid row only has one cell which should never be.

when I tried to adjust the size of the cells I got this error:

so I added another row using the option at the bottom of the grid row:

and then I was able to adjust the size of the cells to ensure there are two cells:

Now your page has two columns, and you can add something to the right side cell.
I assume that you are using “templates” to create your pages and one of them with the grid rows are corrupt

I also see that you have the WPBakery Page Builder plugin activate, this can cause errors and I recommend disabling the plugin.Best regards,
MikeHi,
Thank you for the feedback, I’m not able to login to investigate at the normal login url: /wp-admin/ I just get a blank screen.
Is your login different or are you blocking some countries?Best regards,
MikeHi,
Thank you for the feedback, so it looks like those two lines of code were for the desktop menu, on mobile they are making the menu items very large. So I have added#avia-menuto the code so it will show for desktop and not for mobile.#top #header_main > .container .main_menu ul#avia-menu:first-child > li > a { line-height: 155px !important; } #top .header-scrolled #header_main > .container .main_menu ul#avia-menu:first-child > li > a { line-height: 60px !important; }It is activate now, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the test page, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-1038 #layer_slider_1 { z-index: 0; } #top.page-id-1038 #after_layer_slider_1 > div > div > div > div > div { z-index: 99; position: relative; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Is this going to be for a language plugin, often they have language flags, which one are you using?
If not where will they be linking to?Best regards,
MikeHi,
Thank you for your feedback, so for the 4 images on your home page that are also links you can add this css to make them white on hover, I usedrgba(255, 255, 255, .8)so it’s 80% white, but you can change the last number to make it more or less white.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home .flex_column.av_one_half.avia-link-column-hover:hover:before { content:""; display: block; height: 100%; position: absolute; visibility: visible !important; top: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, .8)!important; }After applying the css, Please clear your browser cache and check.
The reason your floating button’s z-index is not on top of all of your elements is because of the stacking order of the page, that is since your button is at the top of the page elements later are still stacked on top. To correct please move your button down to above the footer, your css will still place it in it’s fixed position and it will be on top of the elements.
I tested this with jQuery and it works, if you want to try the jQuery I tested with then add this code to the end of your functions.php file in Appearance > Editor:function custom_script(){ ?> <script> (function($) { $(document).ready(function(){ $('.avia-button-wrap.avia-button-right.floating').detach().insertBefore('#footer'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');you will need to keep your button css in place.
Best regards,
MikeHi,
Sorry for the late reply, you can limit the effect to only one or some of your columns, to do this you will need to add a custom class to the one you want it to work on. I tried searching your pages but didn’t find the custom class “three_columns”
If you can include admin login in the Private Content area and tell us which one you want the effect for we can assist and explain what we did should you want to do it again in the future.Best regards,
MikeHi,
Glad that Nikko could help you out, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Glad to hear Guenni could help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.page-id-2412 span.mejs-time-total.mejs-time-slider { display: none !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHey chefstevendellima,
Thank you for the login, are you trying to install the
Enfold Classic Restaurant Demo
or
Enfold One Page Restaurant Demo?
Are you going to be using woocommerce? if so this should be installed first.
Which Webhost are you using and is it a “managed wordpress” host?
I ask because these typically have more restrictions.
please ask your webhost to check the PHP settings to see if the secure options are activated.
If “allow_url_fopen, “allow_url_include” and “register_globals” are “off” ask to have these “on” and temporarily disable modsec so the demo files can be imported from our .at domain.
Before we import the demo again we will have to reset your site, so any content you now have will be lost.
Please also include FTP access so if the server continues block the import we can manually upload the images.Best regards,
MikeHi,
We can assist with css to remove the “UID” of each cell for mobile, but we are going to need to see the table. Please link to the page.Best regards,
MikeHey Dundee,
Thanks for the links, so on your ski page I see you have a full width slider, then 3 smaller images, then a full width gray text block.
So I make the 3 image section have a max-width 80% with margin auto to center them. In between the images and the slider was a white area so I hide it to look better, but feel free to adjust to suit.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#homepage-section-overlay { max-width: 80%; margin: auto; } #after_full_slider_1 { display: none; }After applying the css, Please clear your browser cache and check.
Please see the screenshot in Private Content area of the Expected results.Best regards,
MikeHey Charlotte,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.avia-menu.av-main-nav-wrap.av_menu_icon_beside { padding-right: 0 !important; margin-right: 0 !important; } .social_bookmarks.icon_count_2:after { content: url(https://img.icons8.com/officexs/16/000000/great-britain.png) url(https://img.icons8.com/officexs/16/000000/switzerland.png); }Best regards,
MikeHi,
Thank you for the link and screenshots, I see that you are using the grid row and the images are backgrounds of the cells, so what you need to do is add a “white space” element to the cells with enough padding to force the height you wish for mobile. Right now the cells think they are empty so they are collapsing down.Best regards,
Mike -
AuthorPosts
