Forum Replies Created

Viewing 30 posts - 28,081 through 28,110 (of 67,565 total)
  • Author
    Posts
  • in reply to: Remove back to top arrow button #991914

    Hey Jameel,

    Thank you for using Enfold.

    Yes, it’s possible. Use this css code to remove the scroll to top button.

    #scroll-top-link {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Problem with css list formation #991909

    Hi,

    Thanks for the info.

    We removed the previous css codes and then leave these ones on the Quick CSS field.

    ul.liste li {
        list-style: none!important;
    }
    
    ul.liste li:before {
        content: '■';
        position: absolute;
        left: -15px !important;
        margin: -2px !important;
       right: auto !important;
       color: #4d83b8;
    }

    Best regards,
    Ismael

    in reply to: [URGENT]: Header icon displaying & menu changes color #991908

    Hi,

    The gray area is the background of the wrap_all container. You can adjust that with this css code.

    .html_stretched #wrap_all {
        background-color: #ffffff;
    }

    Add this css code to remove the theme’s burger or mobile menu container and pull the ubermenu container upwards.

    @media only screen and (max-width: 989px) {
    .responsive .av-burger-menu-main {
        display: none;
    }
    
    .responsive #top .logo {
        width: 50%;
        float: left;
    }
    
    .logo, .logo a, .logo a img {
        max-height: 156px !important;
    }
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I’m not sure why it resizes like that on Firefox. I’ve added this css code to fix the issue temporarily.

    #header_main .container, #header_main .container .logo a, #header_main .container .logo a img, #top #header .av-main-nav > li > a {
        line-height: 88px !important;
        height: 88px !important;
    }
    

    We need to inspect the “avia_header_size” script.

    Best regards,
    Ismael

    in reply to: Partner/Logo element seems to have a failure #991899

    Hi,

    Thanks for the update.

    How did you set up the media library folders? The image is inside the “page%20items” folder.

    Best regards,
    Ismael

    in reply to: Help needed for a "magazine style" page #991893

    Hi,

    I’m just trying to tell you that you can’t set the height to 200px because the content will get cut off. How do you want those sections to look? Please provide a mockup.

    Best regards,
    Ismael

    in reply to: Layer slider loading slowly or not at all #991890

    Hi,

    This may be related to it.

    // https://docs.woocommerce.com/document/jquery-cookie-fails-to-load/

    Please contact your hosting provider to confirm if the file is being blocked by MOD_SECURITY rule.

    Best regards,
    Ismael

    in reply to: Sidebar on top in mobile #991884

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: New homepage spacing & font size and weight issues #991883

    Hi,

    I can’t reproduce the issue either — checked on Chrome Windows 7. This is what I see.

    Screenshot: https://imgur.com/a/65QrfGe

    Best regards,
    Ismael

    in reply to: layer slider and accordion issues #991881

    Hey BernardoBussi,

    Thank you for using Enfold.

    Where did you add the layer slider? I can’t find it anywhere in the site. Please create a test page so that we can inspect it.

    Best regards,
    Ismael

    in reply to: Change font-size in shortcuts.css issue #991879

    Hey isarcolor,

    Thank you for using Enfold.

    Copy the css code and put it in the Enfold > General Styling > Quick CSS field or the child theme’s style.css file. It will override the default styling.

    Best regards,
    Ismael

    in reply to: Creating a child theme for an existing enfold site #991877

    Hi,

    I get an error when I try to activate the child theme. Did you create a backup or a restore point?

    UPDATE: Please edit the parent theme’s functions.php file and then remove the “activateMenuItem” function. I moved that function in the child theme but then forget to remove the other one. Sorry about that.

    Best regards,
    Ismael

    in reply to: Help cleaning up custom CSS to fix mobile menu #991875

    Hey FloppySocks,

    Thank you for using Enfold.

    You need to remove this particular line.

    .main_menu, #header_main_alternate {
        display: none;
    }

    Don’t forget to toggle the css/js compression in the Enfold > Performance panel.

    Best regards,
    Ismael

    in reply to: enfold compatibility #991872

    Hey AQ,

    Thank you for considering Enfold.

    The theme has its own layout builder so you won’t be needing another builder plugin.

    Best regards,
    Ismael

    in reply to: My fullscreen slider stopped loading #991871

    Hey Dana2225,

    Thank you for using Enfold.

    The site seems locked.

    abridgetoachievement.com – Access Denied

    Error code 16
    This request was blocked by the security rules

    Incident ID: 726000570499841592-1116647946039198622

    Please contact your hosting provider.

    Best regards,
    Ismael

    in reply to: Enfold not allowing sites to link properly – Part II #991868

    Hey perihelionweb,

    Thank you for using Enfold.

    Where are you trying to embed the link? What is supposed to happen when you embed it?

    Best regards,
    Ismael

    in reply to: Position of text changes depending on display size #991848

    Hi,

    Did you purge the browser cache and toggle the css/js compression?

    Best regards,
    Ismael

    in reply to: LayerSlider in Safari #main padding-top anomaly #991847

    Hi,

    Thanks for the info.

    The script looks correct but you can try this script instead.

    <script>
        (function($) {
            $(document).ready(function() {
                function addPadding() {
                    $("#main").css("padding-top", $("#header").height());
                }     
                
                addPadding();
                $(window).on('debouncedresize resize', addPadding );
            });
        })(jQuery);
    </script>

    Best regards,
    Ismael

    in reply to: New Header Icon not Working #991843

    Hi,

    You’re welcome!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Mobile burger menu disappeared after Enfold upgrade #991842

    Hi,

    The mobile menu is displaying now. We’ve added these css codes in the style.css file.

    @media only screen and (max-width: 767px) {
    	.main_menu .avia-menu, #header_main_alternate, .fallback_menu {
    		display: block;
    	}
    
    	.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a {
        	color: #284c8f;
    	}
    
    	.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after {
        background-color: #848484;
    }
    }

    Best regards,
    Ismael

    in reply to: Adding custom Mobilemenu #991838

    Hi,

    This could be a solution here as well?

    Yes, cloning a container inside the mobile menu should be doable. Something like this should work.

    $('.av-burger-menu-main a').on('avia_burger_list_created', function() {
         if($(this).find('.cloned_menu').length) return;
         $( "div.original_content" ).clone().addClass('cloned_menu').appendTo( "div.cloned_content" );
    });

    The “avia_burger_list_created” event will be triggered once the burger menu item list is created.

    Best regards,
    Ismael

    in reply to: Recent Blog Posts are not showing up on mobile #991835

    Hi,

    Thanks for the update.

    We adjusted the “Offset Number” of both blog posts element to 1.

    Best regards,
    Ismael

    Hi,

    No, it won’t overwrite site A. The plugin will generate the database of Site A and then you have to transfer or import the generated file to Site B.

    Best regards,
    Ismael

    in reply to: Adding Search to the Header Secondary Menu #991831

    Hi,

    Thanks for the update. It says that the password has expired. Please generate another password and then post it again here.

    Best regards,
    Ismael

    Hi,

    Thanks for the info. Looks like the html is minified and I don’t see the critical css styles that are supposed to be generated by the theme. Are you using a plugin to compress the html? Did you enable the theme’s Performance > Compression features?

    Best regards,
    Ismael

    in reply to: Mobile menu position issue #991829

    Hi,

    The mobile menu still isn’t right on the patient site https://theimplantcentre.com/

    It looks like that because of the following css codes.

    #header_main .container, .main_menu ul:first-child > li > a {
        height: 143px !important;
        line-height: 190px !important;
        -webkit-transition: all linear 0.2s;
        -moz-transiton: all linear 0.2s;
        transition: all linear 0.2s;
    }

    Please remove it or adjust the height and line-height value. Again, you can move it inside a css media query if you don’t want that specific modification to affect the mobile view.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I found and deleted both entries in the database (see private field). They contain the error message as expected. I tried to compress the files again and the scripts are being merged properly but not the stylesheets. It still generates the error message instead of combining the stylesheets. I’m not sure why.

    a:1:{s:51:”avia-merged-styles-35421b38da332d0b349071c605a758bb”;s:21:”error-generating-file”;}

    Please use the Autoptimize or the BWP Minify plugin temporarily.

    Best regards,
    Ismael

    in reply to: Categories widget #991822

    Hi,

    Thanks for that. I can’t see the category widget though. Do we need to login to see that widget?

    Best regards,
    Ismael

    in reply to: Show excert in all post for magazine element #991820

    Hi,

    Thanks for the info. It is working now.

    Looks like you’re trying to override the magazine shortcode inside the child theme. You have to make sure that the folder structure is correct or the same as the structure where you copied the shortcode file. And then enable the shortcodes in the child theme by adding the following filter.

    // https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb

    You need to rename the “config-templatebuilder” folder to “shortcodes” as specified in the filter and move the “magazine.php” file inside the “magazine” folder. We’d like to help you with that but we can’t create folder via Appearance > Editor panel. We’ll need access via FTP.

    Best regards,
    Ismael

    Hi,

    If you add in a fallback link using the background video url, the video will open inside a lightbox. It won’t play inside the slider.

    Best regards,
    Ismael

Viewing 30 posts - 28,081 through 28,110 (of 67,565 total)