Viewing 30 results - 4,891 through 4,920 (of 142,862 total)
  • Author
    Search Results
  • #1444381

    Hi,
    Thank you for your patience, I have checked your page with Firefox, and I saw the error after about 14 clicks, but I was not able to reproduce this in any other browser and I found no browser console errors. I believe this may be an error with in the browser, as if it was a theme error it would show in all browsers. I tried to find a work around to stop this such as preventing page scroll on the clicking of the element, but this didn’t work as it seems the scroll behavior is an internal function that occurs even if page scrolling is disabled.

    Best regards,
    Mike

    #1444307

    Hey Fred,

    The version that you are using is very old, it needs to be updated. If you can’t get access to the account which was used to purchase your license, then I would recommend that you purchase a new license. Otherwise you will have this problem every time you want to update or access the theme files.

    Once you have access to the theme files, then the update to 5.7.1 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/

    Best regards,
    Rikard

    #1444305

    Hi,

    Please try this instead:

    #top .av_textblock_section.av-lw58ir2d-584d08387988de11a8769926c1ee0dab .avia_textblock {
      column-count: 1 !important;
    }

    Best regards,
    Rikard

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1444299

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1444114

    HI Ismael – thank you for getting back to me. I have disabled the Autoptimize plug-in and that didn’t seem to work. But I have left it disabled.

    #1444074
    manurimini
    Participant

    Hello
    I’m using a sticky menu on tablets and mobiles that works perfectly
    Here the code:

    @media only screen and (max-width: 989px) {
    .html_stretched.responsive.html_mobile_menu_tablet.html_header_top #top #main {
        margin-top: 120px !important; }
      .html_stretched.responsive.html_mobile_menu_tablet #top #wrap_all #header {
        position: fixed !important; 
      }}
    
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        position: fixed;
    }}

    I also use the Alb full width submenu to point some anchor links.
    The problem with anchor links is that they don’t stop scrolling under the Alb full width submenu.
    How can I have the page scrollig to the anchor and stopping before the Alb full width submenu which has also different heights in tablets or mobilephones?

    I’ve tried to add the function:

    function mobile_sub_menu_sticky() { ?>
    <script>
    window.addEventListener('DOMContentLoaded', function() {
      (function($){
      	var width = $(window).width();
        var $stickyTop = $('#sub_menu1');
        if (width <= 989) {
        $stickyTop.waypoint(function(direction) {
          if (direction === 'down') {
             $stickyTop.addClass('sticky-top');
          }
          if (direction === 'up') {
             $stickyTop.removeClass('sticky-top');
          }
        }, {
          offset: '0%'
        });
        }
      })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'mobile_sub_menu_sticky');

    And then the CSS:

    .sticky-top {
    	position:fixed!important;
    	top:120px!important;
    	z-index:600!important;
    }

    But it didn’t work

    Thank you
    Manu

    • This topic was modified 1 year, 10 months ago by manurimini.
    • This topic was modified 1 year, 10 months ago by manurimini.
    • This topic was modified 1 year, 10 months ago by manurimini.
    • This topic was modified 1 year, 10 months ago by manurimini.
    • This topic was modified 1 year, 10 months ago by manurimini.
    #1444073

    I have now and it moves the search box back to the right but there is still a difference between the sites if you look at them.

    The www site has a header_meta height of 47px whilst the dev site is now smaller at 43px.

    The www site’s search box has 5px padding top and bottom from the phone-info div element so there is gap within the header_meta element. It’s overall height is 36px.

    The dev site’s box now fills the header_meta element despite the phone-info padding being specified (but is apparently ignored), and its height has increased to 42px.

    Now I am sure that I could either just leave it as is in its new format or play around with the CSS on the dev site to get it looking as it did (although the HTML code changes might preclude this).

    But the big issue here is why has the WP update from 6.4.3 to 6.5.2 changed the layout and code? It’s altered the dimensions of the search box, its location (right to left before your CSS fix) and changed the order of the HTML code for the search box. Surely there’s something here that’s “wrong” and needs looking into/fixing?

    #1444062

    Hi,
    Thank you for your patience, I made some adjustments, this is the css now:

    @media only screen and (max-width: 989px) {
    	#header_main > .widget {
    	display: none;
    }
    }	
    @media only screen and (min-width: 990px) and (max-width: 1439px) {
      .av-logo-container .inner-container .widget #searchform {
        width: 100%;
        min-width: 500px;
      }
      .av-logo-container .inner-container .widget {
    	display: flex;
        order: 3;
        flex-basis: 65%;
        right: -15%;
        top: -5%;
    }
    }
    @media only screen and (min-width: 1440px) { 
        .av-logo-container .inner-container .widget {
            display: flex;
            order: 3;
            flex-basis: 65%;
            right: 0;
            top: -5%;
        }
        .av-logo-container .inner-container .widget > search {
            width:100%
        }
    }	
    @media only screen and (min-width: 990px) {
    .av-logo-container .inner-container {
    	display: flex;
        flex-direction: row-reverse;
    }
    
    #header_main > .widget {
    	display: none;
    }  
    .av-logo-container .inner-container .widget #searchform .ajax_search_response {
    	background-color: #fff;
        z-index: 3;
    }
    .header_color #search-6 input[type=submit] {
        background-color: #da291c;
        color: #fff;
     }
    .header_color #search-6 input[type=submit]:hover {
        background-color: #da291c;
        color: #fff;
     }
      #top #header.header_color .widget input[type=text] {
    	border-color: ebebeb;
    	border-radius: 3px;
    }
    #top #header.header_color .widget #searchsubmit {
        border-radius: 0 3px 3px 0;
    }
    
    #top #header.header_color .widget #searchform #searchsubmit {
     	font-size: 16px;
    }
    .av-logo-container .inner-container #menu-item-shop {
    	display: flex;
        order: 2;
    }
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    #1444059
    Webvriend
    Participant

    Dear Enfold,

    We use a section in combination with a video background. I know that your autoplayer is turned off by default. I would like to create a custom hook / js for the aviaVideoPlayer that always performs the autoplay on mobile, this is roughly what I want, but unfortunately it doesn’t work:

    $(‘.avia_section .avia_video’).on(‘av-video-loaded’, function(e)

    OR

    $(‘.avia_video’).on(‘av-mediajs-loaded’, function()

    Would you like to make/share a snippet for this, we have both a YouTube and an MP4, as far as we are concerned it should work for everything. I’m curious if you can make something. I often make HTML5 videos for custom websites and they also work autoplay on mobile, so it is possible.

    Would like jQuery snippit based on a .on() function.

    ** Please don’t specifically go to another topic, but let Gunter from Yigit build a snippit

    #1444046

    Hi Ismael,

    Thank you for the code. It works, but I was thinking somethig more intuitive, like here: https://i.ytimg.com/vi/rh9H08x4Sz0/maxresdefault.jpg

    Right now it displays an arrow on top of the text and is not very intuitive: https://www.alexandrubugnariu.ro/homepage/

    Thank you!

    #1444040

    Hey jbcomcleaning23,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top .av_textblock_section.av-lw58ir2d-584d08387988de11a8769926c1ee0dab .avia_textblock {
      column-count: 1;
    }

    Best regards,
    Rikard

    Hey clbdcnpafe,

    Thank you for the inquiry.

    The issue you’re experiencing with background images appearing differently on various laptop and desktop screens is due to how the background-size: cover; property works in css. When you use background-size: cover; or when the Background Attachment is set to Stretch to fit, the background image is automatically resize to cover the entire container, maintaining its aspect ratio. This often results in parts of the image being cut off, especially if the aspect ratio of the image doesn’t match the aspect ratio of the container.

    If you need the whole image to be visible within the container, you can set the background attachment to “Scale to fit”, which will set the background-size to “contain”. However, this might create spaces around the background image if the aspect ratio or size of the container doesn’t match the background image.

    For more info about this property, please check the link below:

    // https://www.w3schools.com/cssref/css3_pr_background-size.php
    // https://developer.mozilla.org/en-US/docs/Web/CSS/background-size

    Best regards,
    Ismael

    #1444021

    Hi,

    Thank you for the info.

    We noticed that the Autoptimize plugin is enabled. Have you tried disabling this plugin temporarily or toggling the compression after making changes to the site? We’ll check the site again once the password for the account is available.

    Best regards,
    Ismael

    #1444016

    Hey tcampaner,

    Thank you for the inquiry.

    There is no default option for this, but you can use the following css code to create an arrow above the menu items with submenus.

    #top .menu-item-has-children:before {
        content: '';
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #ffffff;
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    Best regards,
    Ismael

    #1443955
    JoeSurf
    Participant

    I’ve uploaded an SVG file via the Enfold settings for my site logo. While the SVG logo appears fine across browsers on desktop, the iPad, and Android devices, for some reason it doesn’t show on iPhones.

    The logo does appear when inspecting the site via the iPhone view using Chrome Dev Tools. But not on the actual device. In Dev Tools you can see the code in the site’s header for the SVG code for the logo. However, the image just doesn’t appear.

    Any help would be greatly appreciated. Thanks.

    #1443932

    Hey zimbo,

    It looks like there is an empty div added in the Phone Number Or Small Info Text option under Enfold->Header, please remove anything which might be there. After that then you can try using this CSS to align the search field:

    #top #searchform > div {
      float: right;
    }

    Best regards,
    Rikard

    #1443927

    In reply to: Iconfont missing

    Hi,

    Great, I’m glad that you found a solution and thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1443917
    zimbo
    Participant

    As per the title, I have the same problem as reported in this thread: https://kriesi.at/support/topic/update-from-wp-6-4-4-to-wp-6-5-2-breaks-enfold-header-main-navigation/

    I have updated the dev/test site http://dev.jacksgallery.co.uk/ and if you compare to the www site, https://www.jacksgallery.co.uk/, running 6.4.4, you can see the problem on the dev site in the top header with the search box.

    Unfortunately the OP did not state how he solved the problem.

    As per the OP, commenting out “add_shortcode(‘avia_search’, ‘get_search_form’);” in functions.php restores the header to as it was but of course without the search box (the shortcode displays where the search box should be), which is the whole point of having the header_meta div.

    Please can you advise how to fix this so that I can safely update the www site and restore the dev site?

    clbdcnpafe
    Participant

    Hello,

    We are long-time users of Enfold and have never been able to solve this problem: background images in color sections appear differently on different size laptop and desktop screens. That is, images appear cut off at the bottom, top to bottom, distance greatly varying, depending on the website visitor’s laptop or desktop screen size. We are NOT referring to how images appear on tablets or smartphones, just laptops and desktops.

    How can we get the whole image to appear in the same size on these laptop and desktop screens?

    I have included a sample page with password, together with an admin user name for you in the private content.

    Thanks.

    #1443907
    reqonsult
    Participant

    On the top of the home page (header), we’ve tried to add a full-screen slider. A video was embedded in the background. However, this video did not appear in the mobile version, but a substitute image. Why? How can we display the video automatically in the mobile version too? Thanks for your help.

    Hi,
    The srcset for the featured image of blog posts is now added:
    Enfold Support 5807
    and this looks like it has increased the score on mobile:
    Enfold Support 5809
    and desktop:
    Enfold Support 5811
    I’m not sure how your ewww plugin works but I doubt the disabled function is related to this.

    Best regards,
    Mike

    It looks like it’s also not serving next generation images (webp) . . . but the ewww plugin is supposed to do that, and was doing that before. Did the change remove that ability and the serving the appropriate size images?

    PS the desktop version of images is working fine–these issues are only for mobile devices

    • This reply was modified 1 year, 10 months ago by gatehealing.
    #1443890

    Hi,

    Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1443870

    Hi,
    This Google Ads code is not apart of the theme, it probably was added in the Enfold Theme Options ▸ Google Services ▸ Google Analytics Tracking Code or in the functions.php file or in the header.php file, or perhaps you have a Google Tag manager plugin. Please look in these places, if you can’t find it include a admin login in the Private Content area so we can examine.
    Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker, and helps the Mods keep the threads on topic. For further questions please open a new thread

    Best regards,
    Mike

    Hey spokerstradingco,

    Please check: https://kriesi.at/support/topic/navigation-menu-small-separator-height/

    Best regards,
    Ismael

    #1443824

    Hey spokerstradingco,

    Thank you for the inquiry.

    You can add this css code to remove the default border and create another with a definite height.

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text:before {
        content: '';
        width: 1px;
        height: 22px;
        background: #c4beb1;
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        border: 0;
    }
    
    .av_seperator_small_border .av-main-nav > li.menu-item-top-level-3 > a > .avia-menu-text:before, .av_seperator_small_border .av-main-nav > li.menu-item-top-level-1 > a > .avia-menu-text:before {
        display: none;
    }

    Best regards,
    Ismael

    #1443823

    In reply to: Full width front page

    Hi,

    Thank you for the inquiry.

    We added this css code to adjust the width and height of the front page.

    .responsive #top.boxed.page-id-329 {
        width: 100%;
        max-width: 100%;
    }
    
    .responsive  #top #front-page {
        min-height: 100vh;
    }

    Best regards,
    Ismael

    #1443814

    In reply to: Logo container

    Hey nebuddlho,

    Thank you for the inquiry.

    You can add this css code to adjust the margins on both sides of the header container.

    @media only screen and (min-width: 990px) {
      /* Add your Desktop Styles here */
      #header_main.container_wrap_logo .av-logo-container {
        margin: 0 50px;
      }
    
      #header_main.container_wrap_logo #custom_html-4 {
        margin-right: 50px;
      }
    }
    

    Best regards,
    Ismael

    #1443718

    In reply to: Page modify problem

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

Viewing 30 results - 4,891 through 4,920 (of 142,862 total)