Hey rixi,
Thank you for the inquiry.
You can try this code in the Enfold > General Styling > Quick CSS field:
#top #wrap_all .social_bookmarks .social_bookmarks_instagram a {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
Result:

Best regards,
Ismael
Hey jimmiemoreland,
Thank you for the inquiry.
Yes, you can create a Custom Layout and apply it to the pages where you want the layout to display. When you update the Custom Layout, all instances of the template will update automatically. Please check this link for more info.
— https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/
Best regards,
Ismael
Hi Ismael, thanks for the response.
I am currently working with the hosting support to see if they can find the issue. Enfold works great on the staging environment but not on the production site. I’m ‘thinking’ the issue is with hosting but can’t say for certain.
Lets see what they come up with and if they can’t figure it out I will get back to you.
Thanks!
Hey Slade,
Thanks for the login, I see that you have the Elementor plugin installed, please note the Elementor and Enfold are not compatible.
Try to disable all plugins and check again.
Best regards,
Mike
My customer’s website is having the same issue. It has the latest version of Enfold Parent theme. I made a couple edits per their request and Enfold Child stripped away all CSS.
Hi,
I can’t get any pages built with Enfold to load the editor. I also attempted to remove one of the social links in the “Social Profiles” list in the theme’s admin panel but it wouldn’t save (“Saving didn’t work! Please reload the page and try again”).
I’ve logged out, tried different browsers…no luck.
Any help would be appreciated.
Thanks!
Hello,
Looking to install an image view like this one.
Has multiple thumbnail sliders on the right with conditional color options. The color slider changes depending on which door is chosen. And the door image thumbnail is different from the door image that displays, so lots of options. Can you suugest something that may work within enfold or a plugin?
https://www.chiohd.com/homeowners/garage-doors/accents
Thank you
I want to install the Template Enfold Band.
Home Page of Template EnfoldBand can not saved, when change a single word.
I installed it many times on a new and fresh system, but the error is alraedy there.
its very urgent, please give me a solution.
Uwe
Hi,
Thanks for the update. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
ScarlettGuest
add_action( ‘ava_main_header’, function() {
We are using this hook to create a custom header design.
Previously we had tried editing the code on the child theme for header customisation, but it caused the website to crash.
Do you think using this hook can help us achieve the result without the chances of the website crashing.
Hi Ismael,
Sorry, what I meant is that all the files in the avia_posts_css folder get deleted when pressing the “Save all changes” button on the Enfold settings page. This button: https://i.imgur.com/2frX3XH.png
And that happens even when the “Delete Old CSS And JS Files” is disabled and when there is no cache in place. You can see it by yourself in the staging site link I sent you before.
Thanks!
Hi,
When portrait format images were uploaded originally, Enfold portfolio size image (495x400px) was enabled.
You may need to regenerate the thumbnails to delete the disabled thumbnails. Have you tried any of these plugins?
— https://wordpress.org/plugins/regenerate-thumbnails/
— https://wordpress.org/plugins/regenerate-thumbnails-advanced/
Make sure to create a site back up before using the plugins.
I also know that I’ve got some uploaded images with an original width of 400px so just targeting “400” in srcset isn’t an option,
Unfortunately, this is not possible without manually targeting each image. You may need to keep the thumbnails with a 400px height. As mentioned above, the file size difference between these thumbnails is very negligible, so it won’t really make much difference whether they are enabled or disabled.
Best regards,
Ismael
Hi guys,
We found out that no matter what we choose in “Delete Old CSS and JS files”, the files of /wp-content/uploads/dynamic_avia/avia_posts_css get deleted upon saving the changes.
How can we make sure that Enfold respects the “Delete Old CSS and JS files” box?
Thank you,
re. gif format – the images are quite old and I must have mistakenly created them as that rather than jpg; there are only 22 gifs out of over 4000 images on the site, I might get around to changing them.
Thank you for the function but it is the 400px height of the deleted portrait images that I need to target and remove from srcset. Changing $width to $height doesn’t work. $width == 170 does, but I don’t know the widths of all the 400px tall images that I deleted because…
When portrait format images were uploaded originally, Enfold portfolio size image (495x400px) was enabled. The upload process used the Max Height of 400px to create the new portfolio size, so the width was smaller and varied – the leaflet is 170 wide, the domino 239px. The other deleted 400px images would have had multiple widths as the portrait images were all different sizes and aspect ratios. I also know that I’ve got some uploaded images with an original width of 400px so just targeting “400” in srcset isn’t an option, I need to target 400px as image height please.
Hey Thomas,
Thanks for reaching out to us. You will need a purchase code in order to receive updates, so I would recommend that you purchase your own license. Once you have access to the theme files, then please follow this: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Alexandru ParosuGuest
Hi Support Team,
I am experiencing a persistent problem with the Masonry Gallery (Enfold theme/WordPress block):
Whenever I manually reorder images in the gallery, the change is not saved after updating the page, the frontend still shows the wrong (default) image order.
Steps I have already tried:
1. I updated WordPress and the Enfold theme to the latest versions.
2.I disabled all plugins except Enfold to rule out conflicts.
3.I cleared all cache (WordPress cache plugins, browser cache, and server-side cache).
4.I rebuilt the gallery from scratch and tested in different browsers.
5.I added recommended custom PHP code (avia_gallery_image_order filter and CSS workaround) no effect.
Problem persists:
Regardless of the approach, the images in the Masonry Gallery always display in the theme’s default order, not the manual sorting I applied in the backend. The issue affects new and existing galleries, on updated versions.
Can you please advise if there is a current solution or an ETA for a fix?
Thank you for your help!
ismaels filter (ava_inside_main_menu) is a brilliant idea.
maybe it is easier to use if we insert a social bookmarks shortcode:
then we can use all those benefits of enfold options dialogs – and hover styling etc.
function social_bookmarks_shortcode_inside_main_menu() {
$social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
$social = avia_social_media_icons($social_args, false);
return $social;
}
add_shortcode('social-bookmarks', 'social_bookmarks_shortcode_inside_main_menu');
add_action( 'ava_inside_main_menu', function() {
echo do_shortcode('[social-bookmarks]');
});
Quick css for your setting (left burger – logo – socials )
#top div .logo {
z-index: 101 !important;
}
#top .main_menu,
#top .avia-menu {
width: 100%;
}
#avia-menu #menu-item-search {
position: absolute;
right: 0;
left: auto;
}
#top #wrap_all .av-hamburger-inner {
display:block;
top: 0;
margin-top: 4px;
}
.html_header_top #top #wrap_all .av_logo_right #header_main .logo {
position: relative;
left: 50%;
right: auto;
margin-left: unset;
margin-right: unset;
transform: translateX(-50%);
width: auto;
}
.responsive #top #wrap_all .main_menu {
width: 100%;
display: flex !important;
flex-flow: row nowrap;
justify-content: space-between;
height: inherit;
}
#top #wrap_all .menu-item-avia-special {
display: block ;
}
.responsive #top #wrap_all #header .main_menu ul.social_bookmarks {
display: flex;
}
#top #wrap_all .main_menu ul.social_bookmarks li a {
height: 30px;
}
#top .main_menu .social_bookmarks li {
width:40px;
margin-left:5px
}
#top .main_menu .social_bookmarks li.avia-svg-icon img[is-svg-img="true"],
#top .main_menu .social_bookmarks li.avia-svg-icon svg:first-child {
height:1.1em;
width: auto;
margin-top: 4px !important;
}
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .container {
width: 95%;
max-width: 95%;
}
.html_header_top #top #wrap_all .av_logo_right #header_main .logo {
max-width: 200px;
transform: translateX(-57%); /* === an individual correction - depends on how many social icons are present=== */
}
}
see : https://elementar.webers-webdesign.de/
PS: for more than 3 social bookmarks it gets complicated on small mobile screens. So maybe in this case we set them to display none – or switch in this case to header meta solution
PPS: i tried first that option to show social icons via Header – Extra Elements – Header Social Icons : “display in main header area”
but this was to complicated to find the right css positioning options – especially on shrinking headers.
Hey lelouxwebdesign,
Thank you for the inquiry.
Try to add this css code to reduce the width of the color section container.
.home #av_section_2 .container {
max-width: 1000px;
}
You may need to replace the selector #av_section_2 with a custom css class or element ID.
— https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael
sorry that “Link to: ” comes from Enfold – i thought that you had inserted it to the post title
@Guenni007 – thanks but have a function to remove the image sizes I don’t use. I implemented it when I found out a few months after using Enfold for the first time (years ago…) about the huge number of image sizes it creates, most of which are never used. That is the ultimate cause of my problem here – I’d uploaded images and created pages then discovered I was almost out of disk space, so deleted all sizes I never use. But by then the deleted image sizes had been inserted into srcset, some don’t display as I’ve deleted them, and there is no (apparent) way to change the srcset HTML after it has first been created.
Hi,
Your site is not available, so we cannot view it. If you should need any further help, then please post separate threads for each of them. We’ll close this thread for now, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Could you try updating the theme to the latest version (7.1.3) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.
If you haven’t registered your theme license, then follow this: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
the link comes from enfold itself. You do not need to insert on title input field links.
Hello, WordPress is saying it’s having problems with Enfold. I can no longer edit products, and page editing only started working again after I switched to the default editor in the settings. Products can only be edited from within the website itself.
Regards, Thomas
I can’t update the enfold theme with the token (see private content attached)…
you can see that if there are more than 1 post inside a category – it works:
https://kunst-en-verhalen.rhijnhof.nl/pieta/
what makes me wonder is that on your posts with category: oorlogsslachtoffers (only 1) – there should be no post-navigation. ( Do you have in the page title that p-tag ?)
so maybe Ismael could help you with this inside your installation
PS : the setting on Enfold > Blog Layout > Single Post Navigation setting is not important if you use the filter from : above
With the help of this filter, you can even handle post-types differently.