Forum Replies Created

Viewing 30 posts - 7,711 through 7,740 (of 34,913 total)
  • Author
    Posts
  • in reply to: How to Overlap Columns/Elements for Homepage Banner? #1405953

    Hi,
    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. Have a great day.

    Best regards,
    Mike

    in reply to: Need a gradient Nav Bar and A solid Logo Area #1405952

    Hi,
    Do you mean the main menu nav bar, with equal space between the menu items, if so try this:

    .responsive #header_main_alternate > .container {
    	max-width: 100%;
    	padding: 0;
    }
    .html_header_top.html_logo_center #top #header_main_alternate .main_menu ul:first-child {
        display: flex;
        justify-content: space-between;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Fullwidth easy slider causes vibration in website? #1405950

    Hi,
    Thanks for the update, unfortunately, I can’t reproduce it, I’m waiting to hear from another team member that can reproduce it and has some advice to correct it, Thank you for your patience.

    Best regards,
    Mike

    in reply to: How to Overlap Columns/Elements for Homepage Banner? #1405948

    Hi,
    Thanks for the login, I made some adjustments for mobile, please check.

    Best regards,
    Mike

    Hey Eric,
    Please link to your fontello zip file so we can test it on our test site.
    I also assume you tried clearing your site cache plugin and Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression

    Best regards,
    Mike

    in reply to: Modify Social Media Icons in Header/menu #1405888

    Hi,
    To change your social icons to images try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .social_bookmarks li:hover a {
      background: transparent !important;
    }
    #top .social_bookmarks li a:before{
      content: "";
      display: block;
      width: 30px;
      height: 30px;
    
    }
    #top .social_bookmarks li.social_bookmarks_facebook a:before {
      background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat;
      background-size: contain;
    }
    
    #top .social_bookmarks li.social_bookmarks_instagram a:before {
      background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat;
      background-size: contain;
    }
    #top .social_bookmarks li.social_bookmarks_linkedin a:before {
      background: url(https://img.icons8.com/offices/30/000000/hot-air-balloon.png) center center no-repeat;
      background-size: contain;
    }

    and change the image urls to yours.
    If you are going to use your own images you can change the height & width in the css above to make them the size you wish, if you are not going to use your own image you can change the font icon size with this css, adjusting to suit:

    #top #wrap_all .social_bookmarks li a {
      width: 30px!important; 
      line-height: 30px!important; 
      min-height: 30px!important; 
      font-size: 20px!important; 
      }
      
      #top #wrap_all .social_bookmarks li {
      height: 20px!important; 
      width: 30px!important; 
      }
      
      #top #wrap_all .social_bookmarks {
          height: 60px!important;
      }

    To change the colors try this css:

    #top #wrap_all .av-social-link-facebook a,
    #top #wrap_all .av-social-link-facebook:hover a {
        color: #fff;
        background-color: #37589b;
        text-decoration: none;
    }  
    #top #wrap_all .av-social-link-instagram a,
    #top #wrap_all .av-social-link-instagram:hover a{
        color: #fff;
        background-color: #d92e7d;
        text-decoration: none;
    }
    #top #wrap_all .av-social-link-linkedin a,
    #top #wrap_all .av-social-link-linkedin:hover a {
        color: #fff;
        background-color: #419cca;
        text-decoration: none;
    }

    Best regards,
    Mike

    in reply to: Enfold author block #1405886

    Hey Laurent Vermot-Gauchy,
    Try following this thread for an author block.
    You can specify the colors of links at Enfold Theme Options ▸ General Styling ▸ Main Content ▸ Primary Color you will see it says it is for Font color for links, dropcaps and other elements
    If you want to use css to change the link color try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #main .main_color a {
    color: red;
    }
    After applying the css, please clear your browser cache and check.
    
    Best regards,
    Mike
    in reply to: Portfolio Nav Arrows disappear #1405885

    Hey Cocoa,
    Thanks for your question I’m not sure why, but I have asked the rest of the team for advice. In my test if the LayerSlider shortcode is added to a code block element the next/prev arrows do show, but the LayerSlider is not full width. We could probably make the code block full width, but let’s wait for the team to offer some advice first. Thank you for your patience.

    Best regards,
    Mike

    in reply to: How to Overlap Columns/Elements for Homepage Banner? #1405882

    Hi,
    Glad to hear this helped, to remove this from the mobile view, try wrapping the code in a media query @media only screen and (min-width: 767px) { ... } like this:

    @media only screen and (min-width: 767px) { 
    #homepage-banner .green-box {
    	left: -15vw;
        z-index: 1;
    }
    .responsive #top #homepage-banner > .container {
    	max-width: 100%;
    	padding: 0;
    }
    
    #homepage-banner .avia-image-container .avia-image-container-inner img {
    	width: 100%;
    	right: -5vw;
    }
    }

    the (min-width: 767px) means it won’t work until at least 767px, you could change this to 1024px, 1440px or any other minimum screen size that you wish.

    Best regards,
    Mike

    in reply to: How to Overlap Columns/Elements for Homepage Banner? #1405852

    Hi,
    Thanks for the feedback, I disabled the above css for now and to ensure that I am understanding correctly, when I look at the example page I see that the header image and overlay text box is not 100% of the page, but it is 100% of the content area, leaving a margin on both sides, note that the overlay box comes to the edge of the content area:
    Enfold_Support_1891.jpeg
    With the above css removed your header image is to the left edge of the page content area, but the overlay box doesn’t extend to the right edge of the content area, so we only need to make the overlay box bigger, correct?
    Enfold_Support_1889.jpeg
    If so I got pretty close by changing the coluoms to 4/5 & 2/5 and using this css:

    #homepage-banner .green-box {
    	left: -15vw;
        z-index: 1;
    }
    .responsive #top #homepage-banner > .container {
    	max-width: 100%;
    	padding: 0;
    }
    
    #homepage-banner .avia-image-container .avia-image-container-inner img {
    	width: 100%;
    	right: -5vw;
    }

    Enfold_Support_1893.jpeg
    try clearing your browser cache and see if this is closer, and try fine tuning the css to suit.

    Best regards,
    Mike

    in reply to: Fullwidth easy slider causes vibration in website? #1405849

    Hi,
    It sounds like you have found the issue is with the custom scale in Windows 11, since the issue doesn’t occur when the custom scale is set to normal (100%).
    The theme can’t adjust a user’s custom scale setting on their computer nor is the user’s custom scale setting told to the website by the browser, so there is not a way to adjust for this.
    I’m not able to reproduce the issue when my custom scale is set to 125% on Windows 10, unfortunately, I’m not able to update to Windows 11.
    I have asked the rest of the team for advice and will reply when I hear back from them, Thank you for your patience.

    Best regards,
    Mike

    in reply to: Custom menu for products – style #1405846

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

    in reply to: Accordion, Portfolio, Heading #1405845

    Hi,
    Thanks for the feedback and the screenshots of your Enfold pages, this will help us identify the changes you are looking to make, please also link to the actual Enfold pages so we can examine the elements and help.
    If it is not possible to view the Enfold version of the page unless it is activated in the Theme Switcha plugin, then also take some screenshots of the desired final result for the pages and activate the Enfold theme so we can examine the elements to determine the needed css.

    Best regards,
    Mike

    in reply to: Leaflet grayscale #1405844

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

    in reply to: Google reCaptcha does not work #1405820

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

    in reply to: Submenu as shortcode breaks layout #1405819

    Hi,
    Yes, the menu will be in the code, and if you want to change it in the future you would change the code.
    Injecting the shortcode seems to depend on what elements are used on the page, for me it works fine on a product page or a post without a sidebar.
    But the solution above works correctly and doesn’t break the layout, give this a try.

    Best regards,
    Mike

    in reply to: Accordion, Portfolio, Heading #1405818

    Hi,
    Thanks, please also like to the pages where we can see each of these elements, for example, I can’t seem to find this element:
    https://img.savvyify.com/image/oxhA
    and this product is using the elementor plugin so it looks like the way you want the enfold product to look ▸ https://intercettazioni.biz/microspia-audio-gsm-2g/
    https://img.savvyify.com/image/oGzM
    but to help you with these customizations we need to see the enfold product page.

    Best regards,
    Mike

    in reply to: Bug on German version of datepicker in forms. #1405762

    Hi,
    Glad Günter 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,
    Mike

    in reply to: Google reCaptcha does not work #1405761

    Hi,
    Thank you for the link to your test page, I accepted the cookie consent bar button, then the page auto reloaded, then I filled out the contact form and got the success message:
    Enfold_Support_1887.jpeg
    Please give this a try.

    Best regards,
    Mike

    in reply to: Submenu as shortcode breaks layout #1405760

    Hi,
    I believe you are seeing this on single posts or archives with a sidebar, so to work with this try copying the html of the submenu, on my example post I used this:

    <div id="sub_menu1" class="av-submenu-container main_color av-sticky-submenu container_wrap sidebar_right" style="z-index: 301; top: auto; position: absolute;"><div class="container av-menu-mobile-disabled av-submenu-pos-center"><ul id="av-custom-submenu-1" class="av-subnav-menu"><li class="menu-item menu-item-top-level menu-item-top-level-1"><a href=""><span class="avia-bullet"></span><span class="avia-menu-text">Menu Item 1</span></a></li><li class="menu-item menu-item-top-level menu-item-top-level-2"><a href=""><span class="avia-bullet"></span><span class="avia-menu-text">Menu Item 2</span></a></li></ul></div></div>

    you will note that it is important to not have any line breaks in the html.
    It is also important to copy the div before: <div class="clear"></div> and after: <div class="sticky_placeholder" style="height: 51.4375px;"></div>
    To test you can use the code in my example below, this is the script to add to your child theme functions.php:

    function custom_sub_menu_script() { ?>
      <script>
    (function($){	
        var sub_menu = '<div class="clear"></div><div id="sub_menu1" class="av-submenu-container main_color av-sticky-submenu container_wrap sidebar_right" style="z-index: 301; top: auto; position: absolute;"><div class="container av-menu-mobile-disabled av-submenu-pos-center"><ul id="av-custom-submenu-1" class="av-subnav-menu"><li class="menu-item menu-item-top-level menu-item-top-level-1"><a href=""><span class="avia-bullet"></span><span class="avia-menu-text">Menu Item 1</span></a></li><li class="menu-item menu-item-top-level menu-item-top-level-2"><a href=""><span class="avia-bullet"></span><span class="avia-menu-text">Menu Item 2</span></a></li></ul></div></div><div class="sticky_placeholder" style="height: 51.4375px;"></div>';
      $('#top.archive,#top.single-post').each(function(){
        $(sub_menu).insertBefore( ".container_wrap_first" );
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_sub_menu_script');

    this will show the submenu on single posts and archive pages, see the two links to my test pages below.
    Enfold_Support_1885.jpeg

    Best regards,
    Mike

    in reply to: Gradient transparent permanent header #1405758

    Hi,
    It looks like I’m redirected to a maintenance page, please include an admin login in the Private Content area so we can see your page.

    Best regards,
    Mike

    in reply to: Accordion, Portfolio, Heading #1405757

    Hi,
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.
    I have not used the plugin before so I don’t know how it works, but when I check your site it don’t look like Enfold is active and the elements don’t seem to be Enfold elements.

    Best regards,
    Mike

    in reply to: Leaflet grayscale #1405756

    Hi,
    Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .leaflet-tile-pane {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    }

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

    Best regards,
    Mike

    in reply to: Anchor links offset #1405755

    Hi,
    Thanks for the login, I found that you had Enfold Theme Options ▸ Performance ▸ Disable jQuery Migrate enabled, I disabled it for you now you don’t have the jQuery error. I also made some minor adjustments to the script, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom menu for products – style #1405754

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .menu-meniu-categorii-container .menu-item-has-children > a:after {
      content: '>';
      float: right;
      padding-right: 10px;
    }

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

    Best regards,
    Mike

    in reply to: How to Overlap Columns/Elements for Homepage Banner? #1405753

    Hi,
    Try this css:

    .responsive #top #homepage-banner > .container {
    	max-width: 100%;
    	padding: 0;
    }
    #homepage-banner .av_two_third .avia-image-container-inner,
    #homepage-banner .av_two_third .avia-image-container-inner img {
    	width: 100%;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Google reCaptcha does not work #1405742

    Hi,
    Thanks for the feedback, I see the auto-reload is working, can you create a test page with a contact form using the Google reCaptcha so we can see the error, your current contact form is using the numeric captcha

    Best regards,
    Mike

    in reply to: Accordion, Portfolio, Heading #1405726

    Hey Intercettazioni,
    Thanks for the links to your pages, but it doesn’t look like Enfold is activated and while you mention about photos we should see to understand the issues, I don’t see these photos.
    Your site seems to be using the plugins elementor and VC composer, these are not compatible with Enfold, which uses it’s own built-in page builder.
    There is not an easy way to convert these page builders the Enfold Advanced Layout Builder (ALB).
    I recommend creating a clean WordPress install with only Enfold installed and then create your site, we can help with many customizations with our elements, but there may be some situations were there won’t be a one for one replacement for a elementor or VC composer element.

    Best regards,
    Mike

    in reply to: Leaflet grayscale #1405725

    Hey ThorstenFB,
    Please link to your map page so we can examine the elements.

    Best regards,
    Mike

    in reply to: Fullwidth easy slider causes vibration in website? #1405723

    Hi,
    Thanks for the feedback and for the video, I checked our demo page that you showed in the video in Windows in Chrome, Firefox, & Edge and I couldn’t see this.
    I can barely see it in your video, are you using any browser extensions have you checked if your browser can be updated?
    In the video of your site it is easier to see, but I can’t see your site live, I just get a 404 error, I see that you say it’s served on a localhost, will you be moving it to a live web server soon so we can see it?

    Best regards,
    Mike

Viewing 30 posts - 7,711 through 7,740 (of 34,913 total)