Forum Replies Created
-
AuthorPosts
-
Hey schweg33,
Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#wrap_all #footer { padding: 0; }if you want the space even less try adding this also:
#wrap_all #footer .widget { margin: 10px 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Mabludo,
There should not be anything special that you need to do, your license should not be registered to a specific domain, but it can’t be checking for updates from multiple domains, so as long as you only have it installed on one domain you will be fine.
If you have built a site for a client on your domain with your license, you can import it to your client’s domain and remove your license token from Enfold Theme Options ▸ Theme Update ▸ Enter a valid Envato private token then have your client purchase a license and enter their license token instead.Best regards,
MikeHey navindesigns,
Thank you for the link to your site, to put the two links between the logo and burger menu try this css:
@media screen and (max-width: 767px) { #top #header #header_main #text-3.widget { position: absolute; left: 80px; right: 0; top: -3px; } #top #header #header_main .homeHeaderContact { gap: 5px; } #top #header #header_main .headerMenu li:first-of-type { padding-right: 5px !important; } #top #text-3.widget ul.homeHeaderContact { width: 90%; float: right; margin: auto; } }
while this looks ok for larger mobile (425px) it’s not good for smaller mobiles like iPhones, but you have the empty blue area why not use it and allow your social icons to show:@media screen and (max-width: 767px) { #top #header #header_meta { background-color: transparent; } #top #header #header_main #text-3.widget { position: absolute; left: 0; right: 0; top: -44px; } #top #header #header_main .headerMenu li:first-of-type { padding-right: 8px !important; } #top #text-3.widget ul.homeHeaderContact { width: 100%; justify-content: center; } }
try each of these add see which you like best, after applying the css, please clear your browser cache.Best regards,
MikeHi,
Thank you for the link to your site, please try this css:
1):#top #header .av-main-nav > li#menu-item-489:hover > a .avia-menu-text, #top #header .av-main-nav > li#menu-item-490:hover > a .avia-menu-text { color: #000; }2):
#top #wrap_all #header_main > .container .main_menu .av-main-nav > li > a, #top #wrap_all #header_main > .container .main_menu .av-main-nav > li { height: 50px; line-height: 50px; } #top #wrap_all #header_main > .container .main_menu .av-main-nav-wrap { margin: 50px 0; }3):
#top #header .av-main-nav > li.current_page_item > a .avia-menu-text { text-decoration:underline; }4):
#footer .textwidget a.widgetbtn:hover { color: #000 !important; }5):
#top #wrap_all #header_main > .container .main_menu .av-main-nav > li ul li a { font-weight: 600; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad this helped, the third section is for tablets 768px to 1440px, it was just some minor adjustment I noticed when I was testing your site, if it looks good to you then it’s working :)
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHey Elena,
The Division by zero error you are getting is because you have an empty accordion slider on the page, please remove the second accordion slider or add an image to it.
I don’t understand the first issue, please include an admin login in the Private Content area so we can examine.Best regards,
MikeHey Shari,
Thanks for your question, it seems that the default your-domain.com/favicon.ico that browsers look for is pointing to /wp-content/uploads/TSS_112x112-36×36.jpg
which is the one on the right.
What image do you have in your Enfold Theme Options ▸ Favicon?
Do you have an actual favicon.ico in your root directory?
Try removing the Enfold Theme Options ▸ Favicon image and add the correct favicon.ico in your root directory.
Then clear your browser cache and any cache plugin, and check.Best regards,
MikeHi,
Glad to hear that Guenni007 has helped you this sort this out, thanks Guenni007!
If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey HulaSlim,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:#main .slideshow_inner_caption { height: 70%; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMay 28, 2022 at 10:58 pm in reply to: Footer and header influence each other and socket edition #1353302Hi,
For your footer page the reason the background image had a gray color above and below it was because the color section was set to 100% of the page height (100vh) where it should have been set to “No minimum height, use content in article to set section height” I adjusted this for you, please clear your browser cache and check.Best regards,
MikeMay 28, 2022 at 10:30 pm in reply to: Upgrading website from very old version of Enfold – concerns about functions.php #1353300Hi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeMay 28, 2022 at 10:29 pm in reply to: How to modify the homepage of Default Demo's Advanced Layout Builder #1353299Hi,
Thank you for your patience, I examined your logo in the header compared to the footer and the header was a different scaled down image that on it’s own was not as crisp as the footer image so I changed the header logo to the same image.
Please clear your browser cache and check.Best regards,
MikeHi,
Please include admin login in the Private Content area so we can example.Best regards,
MikeHi,
For the advanced style you would need to use the dropdown Select an element to customize to see the options:

for the four links try this css:#top #main .main_color .avia_textblock p a:hover { color: #0839cc; }For your portfolio page mobile, up to 767px, try this css:
@media only screen and (max-width: 767px) { #top.postid-619 #av-layout-grid-1 .flex_cell.avia-builder-el-last { display: none; } #top.postid-619 #av-layout-grid-1 .flex_cell { padding: 0; } }for the same page, 768px to 1440px, try adding this css:
@media only screen and (min-width: 768px) and (max-width: 1440px) { #top.postid-619 #header { display: none; } .html_header_left #top.postid-619 #main { margin-left: 0; } #top.postid-619 #av-layout-grid-1 .flex_cell.avia-builder-el-last { display: none; } .html_header_sidebar.html_content_align_left #top.postid-619 .container { float: none; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
You can disable the linked image overlay at: Enfold theme options > Advanced Styling > Linked Image Overlay

You can remove the Titles on mouse-over by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_remove_title_script() { ?> <script> (function($){ $("*").hover(function(){ $(this).removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_remove_title_script');Best regards,
MikeMay 28, 2022 at 5:22 pm in reply to: Main Menu back round color is not possible to change (startup template demo) #1353286Hey peterolle,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function cAdmin() { $current_user = wp_get_current_user(); $user = $current_user->user_login; return ($user === 'enfold'); } add_action('admin_bar_menu', 'update_adminbar', 999); function update_adminbar($wp_adminbar) { if(cAdmin()) return; $wp_adminbar->remove_node('avia_ext'); }Best regards,
MikeHi,
In the layerslider you would click your image, then attributes, then add the custom class:

But you can also add the onclick attribute directly in the layerslider without using the script or the custom class in the custom attribute field:

onclickgtag('event', 'Banner', 'Click', 'BSO');
So that would probably be the easiest solution for you

Best regards,
MikeHi,
Thanks for the feedback, the script adds the onclick attribute to the link from the functions.php based on the like custom class.
so if you consider this code:
jQuery('.ga-buy a').attr('onclick', 'ga(\'send\', \'event\', \'Buy Button\', \'Resume\', \'Resume Template Download\')\;');
the link custom class ga-buy is the target, wherever this class is found the attribute onclick is added.
With this method you are not editing the link itself so there is no URL as in your example.Now the question is onClick’,’_gaq.push( correct or is onclick’,’ga( correct?
I don’t use Google Analytics but this document points to gtag now being correct.
If this is correct I would try this script in your functions.php:function add_custom_gtag(){ ?> <script> (function($){ $('.custom-class a').attr('onclick', 'gtag(\'event\', \'Banner\', \'Click\', \'BSO\')\;'); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_gtag');with your link having the custom class: custom-class
I would recommend first setting up a test page with a plain image link and a custom class to test this to see if it is logging in your Google Analytics correctly.Best regards,
MikeMay 27, 2022 at 11:13 pm in reply to: Main Menu back round color is not possible to change (startup template demo) #1353244Hi,
Thanks for the feedback, you are using the transparent header, so before scroll the header shows the background color of the element below it, if you want the header always white please change to not transparent.Best regards,
MikeHey jkos,
Thanks for the link to your site, the issues you are experiencing are because you are using the Horizontal Gallery Slider to show your logo and QR image, this slider is designed to advance on the first click and once the image has the active class then the next click will open the link.
This element is not a good choice for what you are trying to do, for as you see on mobile it will show one image and slide to show the next image.
Try using a grid element with two 1/2 columns and placing an image element in each section with a link.Best regards,
MikeMay 27, 2022 at 9:50 pm in reply to: Special heading on blog page not showing and blog read more text colour change #1353229Hi,
Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
As I understand your question the only difference is one image and one video in one column of the footer, so it doesn’t sound like you need two different footers, I would recommend using the plugin Widget Options then add both the image & the video to the footer and set them to only show or not show on the pages you wish.Best regards,
MikeHi,
Thanks for the screenshots and the link, please try adding this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:@media only screen and (max-width: 767px) { #main .sidebar_right .single-product-summary { width: 100%; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey beverlystone,
I believe this thread should help: Add onclick event in button shortcode
The thread refers to a button but the onclick event is added to the link of the button (a) so the same can be applied to any link.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to help, please let us know when we can close this thread.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts


