Forum Replies Created
-
AuthorPosts
-
Hi,
Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:.avia-tooltip .inner_tooltip { font-size: 1.5em; line-height: 1.65em; color: #fff; } #top .av-tt-large-width { width: 350px; } .main_color .avia-tt, .main_color .avia-tt .avia-arrow, .main_color .avia-tt .avia-arrow { background-color: #add4ef; }
Feel free to adjust to suit.
After applying the css, please clear your browser cache and check.
If this still doesn’t work for you then we will need to see your example so we can examine, so please create a test site online.Best regards,
MikeJune 4, 2022 at 10:41 pm in reply to: On 10" tablets Portrait, the menu items overlay the logo #1354187Hi,
Glad Ismael could 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,
Unfortunately I can not reproduce this, if you are seeing this on an iPhone try adding the css:.avia-button.avia-size-large { -webkit-appearance: none; }or this:
.avia-button.avia-size-large:focus { -webkit-appearance: none; }Best regards,
MikeHi,
Unfortunately not, if the user doesn’t accept the use of cookies then they are not recognized when the site is reloaded, it is as if it is their first visit, otherwise the site has tracked them without their consent.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,
MikeHey davidfourieza,
Thank you for your patience, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function ss_allow_skype_protocol( $protocols ){ $protocols[] = 'skype'; return $protocols; } add_filter( 'kses_allowed_protocols' , 'ss_allow_skype_protocol' );then
skype:username?callshould work

Best regards,
MikeHey Loveronika,
Thanks for your question, you would need to use a plugin like Permalink Manager Lite, and remove “portfolio-item/” rome the Portfolio Items post type:

and then remove it from the portfolio items that you have already created:

Best regards,
MikeJune 4, 2022 at 8:10 pm in reply to: Hide flat rate shipping when the amount to have free shipping is reached. #1354170Hi,
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,
MikeHey engage24,
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:#footer .avia-mailchimp-form fieldset { display: flex; flex-wrap: wrap; } #footer .avia-mailchimp-form #element_avia_1_1 { order: 1; } #footer .avia-mailchimp-form #element_avia_2_1 { order: 2; } #footer .avia-mailchimp-form #element_avia_0_1 { order: 3; } #footer .avia-mailchimp-form .form_element:not([id*='element_avia_']) { order: 4; }After applying the css, please clear your browser cache and check.
The expected results:

Best regards,
MikeJune 4, 2022 at 6:21 pm in reply to: Hide flat rate shipping when the amount to have free shipping is reached. #1354162June 4, 2022 at 5:27 pm in reply to: Hide flat rate shipping when the amount to have free shipping is reached. #1354154Hey laboiteapixels12,
Thank you for your patience, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function check_for_free_shipping() { ?> <script> (function($){ function check_shipping() { setTimeout(function () { $('#shipping_method').each(function() { $(this).find('li input.shipping_method').each(function(){ var shipping = $(this).attr('id'); $(this).closest('li').addClass(shipping); }); }); $('#shipping_method .shipping_method_0_free_shipping1 + .shipping_method_0_flat_rate2').css({ 'display': 'none'}); }, 1000); } check_shipping(); $('#top.woocommerce-cart button[name="update_cart"]').click(function(){ setTimeout(function () { location.reload(true); }, 1000); }); })(jQuery); </script> <?php } add_action('wp_footer', 'check_for_free_shipping');This gets each input ID and adds it as parent class (li) and hides the sibling li with css if the free shipping option is available and checks for update cart button click should user change quantity.
Please note that I had to add a 1s delay because woocommerce is slow to add the free shipping element, there is nothing I can do about that.Best regards,
MikeHi,
Thank you for your patience, as I understand your issue, on your History portfolio page: /portofolio-histoire/ you want to increase the masonry mouse-over title with this css:.masonry-portofolio { font-size: 22px !important; }I didn’t find this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field or in your child theme ▸ style.css
So I tested this in your child theme ▸ style.css:

and checked with Chrome, Firefox, Edge in Windows and it worked correctly:

I also had the same results in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

Please clear your browser cache and check.Best regards,
MikeHi,
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,
MikeHey Jimmy Plenderleith,
The Health demo is using the Fullscreen Slider with the Display a scroll down arrow option checked:

You seem to be using the Fullwidth Easy Slider which doesn’t have this option, please try using the Fullscreen Slider instead.
If you have any further questions please create a new thread in the Enfold support fourm and we will gladly try to help you. Please do not use the Pre Sale Questions section for support questions. Thank you for your understanding and for using Enfold.Best regards,
MikeHi,
I assume that you are not using a child theme, if you use a child theme then your child theme functions.php customizations will not be overwritten with each update. Read about using a Child ThemeFor your blog page please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:
@media only screen and (max-width: 885px) { .responsive #top .av-switch-990 .av-menu-mobile-active .mobile_menu_toggle { display: block; float: left; } .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu { display: none; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeJune 4, 2022 at 1:49 pm in reply to: How to remove the tool-tip when pointing to the image? #1354140Hi,
Thank you for the link to your site, to remove the image title on mouse-over try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function remove_title_from_all_elements_on_hover() { ?> <script> (function($){ $("*").hover(function(){ $(this).removeAttr("title"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'remove_title_from_all_elements_on_hover');The only two images that I see that are blurry is the top two images, both are very small images (300px) and you are displaying them very large, for example, the top image is 300×150 and it is shown as a full width image, please use larger images to correct.
Below are direct links to the images please review.Best regards,
MikeHi,
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,
MikeHi,
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,
MikeHi,
@thijmens thank you for your patience and the link to your site, the script in this thread is for the product slider element, your page is not using this element it is a Shop page.
On your page the first 3 columns are equal height but the last one has double the product excerpt, so making all four equal height to the last one will make the first 3 look strange with a lot of white space, my recommendation is that you would be better to remove half of the product excerpt from the last one.
If you would like further help with this please open a new thread and include an admin login in the Private Content area.
We try to keep the threads focused on a single topic to help future searches, thank you for your understanding.Best regards,
MikeHi,
Perhaps try this css:@media only screen and (min-width: 768px) { #footer > .container, #socket > .container { padding-left: 100px; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for your patience and for the login, but I don’t see the domain to your client’s site in the thread, please include so we can login and look at your footer widgets.Best regards,
MikeHi,
Thank you for your patience, The Div Team provided a patch for this issue and I have applied it to your site, see the links below, it seems to be working correctly please check.
This will be in the next update.Best regards,
MikeHi,
Glad to hear this is working for you, you could change the pattern if it suits your needs in Google Analytics, I imagine you will want it descriptive enough that you understand where the click came from.
Unfortunately, I can’t edit the title but the Topic Tags and thread content should be enough that other users will find this helpful, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeJune 1, 2022 at 2:16 pm in reply to: Non-centered footer with "always fixed" "left sidebar" main menu #1353754Hi,
Thanks for the feedback, as you see on my test page I’m using your layerslider on a copy of your page with the footer correct, so with this in mind, I tried deactivating some of your plugins and found that
wp-Typography was causing a conflict, once it is deactivated your footer is correct again. Please check.Best regards,
MikeHi,
Thanks for the screenshots, and adding the custom class, the element you are using is the Icon instead of the Icon Box, for this element try this css instead:.sngmng .av-icon-char { background-image: url(//leagrowingpeople.com/wp-content/uploads/2022/04/consciousuncoupling.png); height: 40px; background-size: contain; background-repeat: no-repeat; background-position: 50% 50%; } .sngmng .av-icon-char:before { opacity: 0; }After applying the css, please clear your browser cache and check.
Best regards,
MikeMay 31, 2022 at 2:28 pm in reply to: Non-centered footer with "always fixed" "left sidebar" main menu #1353592Hi,
Thank you for the link to your site, I found that your layerslider is causing the page div <strong style=’color:#000′>wrap_all to close with the footer outside

I tried to make a copy of your layerslider and remove the<div id="myRandomText">Wir sind Indianer</div>so the script would not run, but the script still ran and the footer error was still there.
I made a copy for your site, linked below, without the script and the footer is correct, so I don’t think it’s any other elements or the theme, please check.Best regards,
MikeHi,
I believe that this file TSS_112x112-36×36.jpg is linked somewhere else, I don’t think this is standard.
I can’t really tell from the outside, but if you include admin login in the Private Content area I could check for you.
As for the time, it is loading in 171ms it’s just last in the waterfall.Best regards,
Mike -
AuthorPosts



