Forum Replies Created

Viewing 30 posts - 1 through 30 (of 35,329 total)
  • Author
    Posts
  • in reply to: Header in mobile view issue – large white space #1497086

    Hi,
    The whitespace and text is coming from a custom function in your child theme functions.php

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= '<h1>Global Textile Holdings</h1><br><span>Quality Stuff</span>';
        return $sub;
    } 

    I removed it for you. Please clear your cache and check.

    Best regards,
    Mike

    in reply to: Fix header on mobile view #1497085

    Hi,
    Did Guenni007’s suggestions help you sort this out?
    Thanks Guenni007

    Best regards,
    Mike

    in reply to: Header in mobile view issue – large white space #1497079

    Hey user877,
    It seems the screenshots require a login, please link to them so we can see them without a login.

    Best regards,
    Mike

    in reply to: General CSS / Advanced Styling not responding #1497067

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Fix header on mobile view #1497044

    Hey bemodesign,
    I added this to your WordPress > Additional CSS:

    @media only screen and (max-width: 767px) {
        .responsive #top #main,.html_header_transparency #main {
            padding-top: 120px !important;
        }
    } 

    Check your Quick CSS field, at the bottom you have plain text that may cause css conflicts.

    Best regards,
    Mike

    in reply to: Enfold Settings for Popup Trigger by Image Click #1497043

    Hi,
    Glad that Guenni007 could help, thank you Guenni007, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Substack icon for social media #1497042

    Hey tonyiatridis,
    You can download a svg substack icon here, name the file “substack.svg”. Then create a folder called “svg”, place the “substack.svg” file inside, compress the folder to a zip file and name it “social”, then upload it to the SVG Iconset and Iconfont Manager.
    Add this in the child theme functions.php file to register the social icon:

    function avia_add_custom_icon($icons)
    {
        $icons['substack'] = array('font' => 'svg_social', 'icon' => 'substack');
        return $icons;
    }
    add_filter('avf_default_icons', 'avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons)
    {
        $icons['substack'] = 'substack';
        return $icons;
    }
    add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
        $substack = array('substack' => array("encode" => true, "encode_urls" => false, "pattern" => "https://substack.com/", 'label' => __("Share on substack", 'avia_framework')));
        $args = array_merge($substack, $args);
        return $args;
    }

    In your Your Social Profiles drop down list it will show at the bottom.
    Then add this css to your Quick CSS field:

    #top #wrap_all .header_color .social_bookmarks .av-social-link-substack:hover a {
        background-color: #ff5700;
    }
    #top #wrap_all .header_color .social_bookmarks .av-social-link-substack.avia-svg-icon:hover a svg {
    	fill: #fff;
    } 

    For mastodon or bluesky see this post.

    Best regards,
    Mike

    in reply to: Center page on mobile phone #1497013

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: section disappears when updating. #1496990

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Mega menu sorting alfabetically #1496988

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Circle behind icons on this page #1496954

    Hi,
    Ok, try this css then:

    .page-id-3368 #intro .iconbox_icon {
    	background-color: red;
    	border: red;
    }
    .page-id-3368 #intro.main_color .iconbox_icon.heading-color:before {
    	color: #fff;
    } 

    B4lYt0F.md.png

    Best regards,
    Mike

    in reply to: Adding mobile post navigation instead of swiping #1496946

    Hi,
    There is not a built-in swipe for the posts, the arrows on the right & left to the next post in hidden on mobile to save screen space, but you can show them with this css

    @media only screen and (max-width: 767px) {
        .responsive #top .avia-post-nav {
            display: block;
        }
    } 

    Best regards,
    Mike

    in reply to: Circle behind icons on this page #1496944

    Hi,
    Seems to be working when I check, try clearing your cache
    B45W93X.md.png

    Best regards,
    Mike

    in reply to: Issue with quick css #1496920

    Hi,
    On my computer I don’t see a difference between chrome & chrome private. This is what I see:
    Screenshot-2026-04-21-144436

    Best regards,
    Mike

    in reply to: Circle behind icons on this page #1496919

    Hi,
    It looks like the I’D was changed to #av_section_2
    So try this css instead:

    .page-id-3368 #av_section_2 .iconbox_icon {
    	background-color: red;
    	border: red;
    }
    .page-id-3368 #av_section_2.main_color .iconbox_icon.heading-color:before {
    	color: #fff;
    } 

    Best regards,
    Mike

    in reply to: Circle behind icons on this page #1496908

    Hi,
    Correct, unless you have the I’D “intro” on another page that also includes an iconbox. You could change the css to this to ensure that it is only on that one page:

    .page-id-3368 #intro.main_color .iconbox_icon.heading-color:before {
    	color: #fff;
    } 

    Best regards,
    Mike

    in reply to: Issue with quick css #1496900

    Hi,
    Both your h3 & h2 are the correct font, Raleway. The default font weight is 600, you can change this in the Advanced Styling options, I set them both to normal for you, you can adjust to suit.
    From your screenshot “Curry vert” looks like a color difference, not a font weight difference.
    Note that none of the css above would change this.

    Best regards,
    Mike

    in reply to: Dark color sections becoming white #1496898

    Hi,
    If your active theme is Enfold and not the child theme, then the code added to the child theme will not work.
    It would be best to activate the child theme. Have you ever had the child theme active? Have you imported the parent theme settings into the child theme? Have you added any snippets into the parent functions.php file?
    Assuming these are all no, follow these steps:
    1 With your parent theme active, go to Enfold Theme Options > Import/Export > Export Theme Settings File and download your theme settings file for fallback.
    2 Ensure your Enfold Theme Options > Performance > JS & CSS file merging and compression is turned off along with any caching plugins.
    3 activate the child theme
    4 Go to the child theme Enfold Theme Options > Import/Export > Import Settings From Your Parent Theme and import
    5 Go to your homepage and clear your browser cache a couple of times and check that the settings have taken effect.
    If it doesn’t look quite right, then check that your child theme Enfold Theme Options > Performance > JS & CSS file merging and compression is turned off and clear your browser cache a couple of more times.
    If still not quite right, then go to child theme Enfold Theme Options > Import/Export > Import Theme Settings File and upload the theme settings file you saved earlier for fallback and clear your browser cache a couple of more times.

    Best regards,
    Mike

    in reply to: Circle behind icons on this page #1496894

    Hey dreyerjm,
    Try this css:

    #intro.main_color .iconbox_icon.heading-color:before {
    	color: #fff;
    } 

    Best regards,
    Mike

    in reply to: Remove white link box behind Coalitions section items #1496893

    Hey dreyerjm,
    Try this css:

    .main_color .avia-content-slider .slide-image {
    	background: transparent;
    } 

    Best regards,
    Mike

    in reply to: Adding mobile post navigation instead of swiping #1496892

    Hey MORTULGAAH,
    Please link to your page and tell us which element you are using.

    Best regards,
    Mike

    in reply to: Issue with quick css #1496891

    Hey jb84,
    In the above css this is wrong:

    /* Sticky header on mobile */
    @media only screen and (max-width: 767px) {
    .responsive #top #main
    }
    /* Margin top value should be equal to header height*/
    margin-top: 0px;
    }
    .responsive #top #wrap_all #header {
    position: fixed;
    } 

    You have a rouge closing bracket making the margin-top do nothing and also close the @media rule so the last rule works on desktop.
    Your first snippet was correct:

    /* Sticky header on mobile */
    @media only screen and (max-width: 767px) {
    .responsive #top #main {
    /* Margin top value should be equal to header height*/
    margin-top: 0px;
    }
    .responsive #top #wrap_all #header {
    position: fixed;
    }
    } 

    Best regards,
    Mike

    in reply to: ENFOLD SPA demo, change color main menu #1496890

    Hi,
    Glad that Rikard could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, unfortunately changing the Isotope and the JavaScript calculation used would require the Dev Team to address this in the core files. Please create a request here for the Dev Team to review and you can follow along and share your input directly with them.

    Best regards,
    Mike

    in reply to: Enfold and Custom Type Fonts Manager for variable Fonts #1496880

    Hi,
    Thanks for your patience, it sounds like you have this sorted out. If you would like the Dev Team to review a possible feature for this, please submit here.

    Best regards,
    Mike

    in reply to: Enfold theme Vulnerable version 7.1.4 #1496877

    Hey Krishan Kant,
    The 7.1.3 XSS vulnerability was fixed with the 7.1.4 update, see our changelog
    https://kriesi.at/documentation/enfold/changelog/

    Patchstack shows no issue with 7.1.4
    https://patchstack.com/database?search=Enfold
    Please link to the Patchstack Vulnerability report that you see so our Dev Team can examine.

    Best regards,
    Mike

    in reply to: Regarding ENFOLD security risk since 1 month. #1496876

    Hey shivam guleria,
    The 7.1.3 XSS vulnerability was fixed with the 7.1.4 update, see our changelog
    https://kriesi.at/documentation/enfold/changelog/

    Patchstack shows no issue with 7.1.4
    https://patchstack.com/database?search=Enfold
    Please link to the Patchstack Vulnerability report that you see so our Dev Team can examine.

    Best regards,
    Mike

    in reply to: Enfold and The Events Calendar files #1496875

    Hi,
    Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.

    Best regards,
    Mike

    Hey dreyerjm,
    Try adding this css to your quick css field in the theme options:

    .av-single-event-content .tribe-events-event-image {
    	display: none;
    } 

    Then clear your cache and check.

    Best regards,
    Mike

Viewing 30 posts - 1 through 30 (of 35,329 total)