Forum Replies Created
-
AuthorPosts
-
Hi,
The whitespace and text is coming from a custom function in your child theme functions.phpadd_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,
MikeHi,
Did Guenni007’s suggestions help you sort this out?
Thanks Guenni007Best regards,
MikeHey user877,
It seems the screenshots require a login, please link to them so we can see them without a login.Best regards,
MikeHi,
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,
MikeHey 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,
MikeHi,
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,
MikeHey 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,
MikeHi,
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,
MikeHi,
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,
MikeApril 24, 2026 at 9:14 am in reply to: WordPress Error message _ Notice: Function WP_Styles::add was called incorrectly #1496989Hi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHey dreyerjm,
Try this css:#intro.main_color .iconbox_icon.heading-color:before { color: #fff; }Best regards,
MikeApril 18, 2026 at 9:27 pm in reply to: Remove white link box behind Coalitions section items #1496893Hey dreyerjm,
Try this css:.main_color .avia-content-slider .slide-image { background: transparent; }Best regards,
MikeHey MORTULGAAH,
Please link to your page and tell us which element you are using.Best regards,
MikeHey 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,
MikeHi,
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,
MikeApril 17, 2026 at 9:36 pm in reply to: Using anchor links under large lazy load masonry gallery #1496882Hi,
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,
MikeApril 17, 2026 at 9:22 pm in reply to: Enfold and Custom Type Fonts Manager for variable Fonts #1496880Hi,
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,
MikeHey 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,
MikeHey 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,
MikeHi,
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,
MikeApril 17, 2026 at 8:44 pm in reply to: Events plugin enfold theme remove featured image on single event #1496874 -
AuthorPosts



