Forum Replies Created

Viewing 30 posts - 17,401 through 17,430 (of 35,026 total)
  • Author
    Posts
  • Hey TJOLoughlin,
    Sorry for the late reply, unfortunately, I have not seen a lazy load plugin that works in every element, often there is some element that it doesn’t work with.
    Some lazy load plugins allow you to define an element to ignore, does WP Rocket let you ignore the Horizontal Gallery?

    Best regards,
    Mike

    in reply to: Downloading page Consulting #1203152

    Hi,
    Glad to hear you have it sorted out, shall we close this then?

    Best regards,
    Mike

    in reply to: I can't update Enfold 4.5.2 to 4.7.4 #1203117

    Hi,
    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,
    Mike

    in reply to: Downloading page Consulting #1203116

    Hi,
    Ok, Ordering Flex Items is what you are trying to do, there are a couple of different “flex” options depending on the elements and their order. This guide might help visualize how flex works. Here is a video called: Change the order of columns for mobile devices on WordPress with CSS

    But if you include the URL to the page in question I can offer advice on getting this to work for you.

    Best regards,
    Mike

    Hi,
    Thank you for pointing this out, I took a look at your page and tested the css above and see that the first column has “float: right” applied.
    To center these columns I added this css, which is only applied to this one page.

    #top.page-id-10687 #after_section_1 .entry-content-wrapper .av_one_third {
    width: 27%;
    margin-left: 1%;
    margin-right: 1%;
    }
    #top.page-id-10687 #after_section_1 .entry-content-wrapper {
    	justify-content: center;
        display: flex;
    }

    Best regards,
    Mike

    in reply to: Downloading page Consulting #1203109

    Hi,
    Sure, please check the admin login, it’s not working for me.

    Best regards,
    Mike

    in reply to: Accordion blue line not resolved on Safari #1203104

    Hi,
    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,
    Mike

    in reply to: Accordion blue line not resolved on Safari #1203101

    Hi,
    Thanks for the login, I added the css I posted above to your WordPress > Customize > Additional CSS and the blue focus is now not showing in Safari or Chrome on Mac, please see the screenshot in Private Content area.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Lightbox Title text when image is in a Text Block #1203099

    Hi,

    @ehquionest
    I believe you are referring to something different, the caption doesn’t show in the lightbox, for the caption to show on the page please enable the Image Caption option:
    2020-04-12_095534.png
    If this doesn’t help please open a new thread with more details and a link to the page so we can investigate. Typically an admin login also helps.

    Best regards,
    Mike

    in reply to: Grid row image backgrand ovarlay #1203098

    Hi,
    Thanks for the image, I see it is important for the text to be on top of the overlay, is there any on-hover action?
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-3906 .flex_cell .overlay {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.2);
      position: absolute;
      z-index: 0;
    }
    #top.page-id-3906 .flex_cell .flex_cell_inner {
    	z-index: 10;
        position: relative;
    }
    #top.page-id-3906 .flex_cell.avia-link-column.avia-link-column-hover {
        opacity: 1;
    }
    #top.page-id-3906 .flex_cell.avia-link-column.avia-link-column-hover:hover {
        opacity: 1 !important; 
    }

    Then add this code to the end of your functions.php file in Appearance > Editor:

    function custom_overlay_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('#top.page-id-3906 .flex_cell').prepend('<div class="overlay"></div>');
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_overlay_script');

    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Far right navigation drop down not working #1203088

    Hi,
    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,
    Mike

    in reply to: Problem with button #1203086

    Hi,
    I found that the apostrophe in your language caused the shortcode to break so the shortcode showed the default label.
    I changed the label from this: label='Scarica l'eBook GRATUITO' to this: label='Scarica l&#039;eBook GRATUITO' and it is working now, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Can't update theme to 4.7 #1203082

    Hi,
    Thanks for the login, this error was caused by an error with the imported icons in the “Iconfont Manager”, I removed the set causing the error. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Accordion blue line not resolved on Safari #1203079

    Hi,
    Please include an admin login in the Private Content area, using the css I posted above to remove the blue focus is working for me, it sounds like you are having a caching issue.
    While you are building your site I recommend disabling all caching plugins and the Enfold Theme Options > Performance > JS & CSS file merging and compression option, once your site is done you can activate your caching.

    Best regards,
    Mike

    in reply to: Questions #1203075

    Hi,
    Glad to help.

    Best regards,
    Mike

    in reply to: Downloading page Consulting #1203029

    Hi,
    That is accomplished with css, for the layout you described above you probably find that if the middle image and text were flipped the whole page would be fine. So if you add a custom ID to this section and use the following css the image and text should be flipped. If not, then please link to the section so we can modify.

    @media only screen and (max-width: 767px)  {
    #custom-id .entry-content-wrapper {
        display: flex !important;
        flex-direction: column-reverse;
      }
    }

    Best regards,
    Mike

    in reply to: Anchor Links #1203028

    Hi,
    Glad to hear this helped. Shall we close this then?

    Best regards,
    Mike

    in reply to: Far right navigation drop down not working #1203027

    Hey qwerty94,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #menu-item-10921 > div.avia_mega_div.avia_mega1.three.units {
    	    left: 10px !important; 
    }

    Best regards,
    Mike

    in reply to: add page url to contact element #1203025

    Hey Dom,
    Sorry for the late reply, unfortunately, we don’t have an option to add this information.

    Best regards,
    Mike

    in reply to: Social Media Icons Disappeared #1203024

    Hey marmat84,
    Thanks for the login, I took a look at your posts and you only have one published post that was created with the Advanced Layout Builder, for these, you have to manually add the social share buttons with the “social share buttons” element.

    Best regards,
    Mike

    in reply to: Accordion blue line not resolved on Safari #1203023

    Hey Bertrand,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .toggler,.toggler.activeTitle:focus {
      outline: -webkit-focus-ring-color none 0px;
      outline-color: -webkit-focus-ring-color;
      outline-style: none !important; 
      outline-width: 0px !important; 
    }

    Best regards,
    Mike

    in reply to: Enfold Icons Not Appearing Across Site #1203022

    Hey timjohnson555,
    Please include a link to your site so we can investigate, an admin login in the Private Content area could also help.

    Best regards,
    Mike

    in reply to: Target css inside iframe #1203020

    Hey maxgorelkine,
    Sorry due to CORs you can’t target the css inside of an iframe, the browser will not override the source css.

    Best regards,
    Mike

    in reply to: Sticky color section #1203017

    Hey jougr,
    Typically you can make any element sticky with this plugin or you can try following the steps in this post

    Best regards,
    Mike

    in reply to: Assign a unique Section ID to the color section element #1203016

    Hey trufflesadmin,
    So your custom ID is not saving? Please include an admin login in the Private Content area and a link to the page so we can investigate the color section.

    Best regards,
    Mike

    in reply to: Questions #1203015

    Hey CharlieTh,
    Thank you, To add screenshots please try using https://savvyify.com/img/ and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Unable to upload recent version of enfold theme #1203014

    Hey Kingsleyuhons,
    Please check that your PHP Max Upload Size is at least 24M and your PHP ZipArchive Extension is enabled, you can quickly check this by going to WordPress > Dashboard > LayerSlider > Options and click “System Status” and look under “Server Settings”
    2020-04-11_201949.png

    Best regards,
    Mike

    in reply to: Customize product page #1203013

    Hey fcp,
    To increase the space between product price and product counter, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .single-product-summary form.cart {
    	 padding-top: 20px !important; 
    }

    To make the product counter and the Add To Cart button a little bit smaller, try this css:

    #top div.single-product-summary .quantity input.plus, #top div.single-product-summary .quantity input.minus,#top div.single-product-summary .quantity input.qty {
        line-height: 21px !important; 
        width: 23px !important; 
        height: 23px !important; 
    }
    #top div.single-product-summary button[name=add-to-cart] {
        padding: 5px !important; 
    }
    div.single-product-summary form.cart div.quantity {
        min-width: 50px !important; 
    }

    Feel free to adjust to suit.
    2020-04-11_200759.png

    Best regards,
    Mike

    in reply to: Ads and website #1203011

    Hi,
    Sorry we don’t develop websites, we develop the theme that is used to create websites.
    If you want to develop your own website we invite you to use Enfold, otherwise, you can fill out the form here to began working with developers that will assist you in creating your website.

    Best regards,
    Mike

    in reply to: Problem with button #1203010

    Hi,
    Since you are using the Classic Editor for your page I assume that you are also using the “shortcode wand” to create the buttons, I created a button for you and the button label was correct “Nuovo pulsante”
    2020-04-11_192819.png
    You can also edit the label after the button is added directly in the HTML:
    2020-04-11_193454.png
    this is what I did to create the second button on your page.

    Best regards,
    Mike

Viewing 30 posts - 17,401 through 17,430 (of 35,026 total)