Hi,
Thanks for your patience for the category background image with “Dandelion-post-background2.png” you can use this css:
.category .container_wrap_first {
background: url(https://templeinacistg.wpenginepowered.com/wp-content/uploads/2025/03/Dandelion-post-background2.png) !important;
background-size: contain !important;
background-color: #f2f0eb !important;
}

but this image has a white background so adding a background color to the page will not show, if the image had a transparent background the background color would show.
To show the title you need to enable Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title, I did this for you:

To add the same background image and color to the post you could use this css:
.single .container_wrap_first {
background: url(https://templeinacistg.wpenginepowered.com/wp-content/uploads/2025/03/Dandelion-post-background2.png) !important;
background-size: contain !important;
background-color: #f2f0eb !important;
}
but you still need to use a tranpernt background image for the color to show.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hey sophie,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 479px) {
.responsive #top .av-main-nav .av-burger-menu-main {
position: fixed;
top: 2px;
right: 7%;
}}
@media only screen and (min-width: 480px) and (max-width: 570px) {
.responsive #top .av-main-nav .av-burger-menu-main {
position: fixed;
top: 2px;
right: 36%;
}}
@media only screen and (min-width: 571px) and (max-width: 767px) {
.responsive #top .av-main-nav .av-burger-menu-main {
position: fixed;
top: 2px;
right: 30%;
}}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Ok I’ll try that. And it’s OK to edit the header.php in the child theme?
/*
* Please do not modify this file on your child theme to add scripts to Head section.
* Refer to this post - https://kriesi.at/documentation/enfold/add-custom-js-or-php-script/#add-a-script-to-head-section and use functions.php file instead
*/
should I use this instead in the functions.php?
//-------------------------------
// Custom script in head section
//-------------------------------
function custom_script_name(){
?>
<script>
// Your script here
</script>
<?php
}
add_action('wp_head', 'custom_script_name');
And the issue with the footer missing from the front page on mobil – is that something with wp rocket settings?
Thanks
Nancy
-
This reply was modified 12 months ago by
Munford.
-
This reply was modified 12 months ago by
Munford.
-
This reply was modified 12 months ago by
Munford.
-
This reply was modified 12 months ago by
Munford.
on header.php the original line is:
$preloader = avia_get_option( 'preloader' ) == 'preloader' ? 'av-preloader-active av-preloader-enabled' : 'av-preloader-disabled';
did you removed ( or commented out ) that line – and replaced it ?
try :
if (is_page(array(1147,945))) {
$preloader = 'av-preloader-active av-preloader-enabled';
} else {
$preloader = 'av-preloader-disabled';
}
PS – it is just a different way to write the array – you can use yours aswell.
But: maybe it is better to have that option in enfold activated globaly – to have the oportunity to style it – and then remove that setting on all other pages then your array is set to if not logic.
if (!is_page(array(1147,945) )){
$preloader = 'av-preloader-disabled';
} else {
$preloader = 'av-preloader-active av-preloader-enabled';
}
on an older post there is no working solution for it.
https://kriesi.at/support/topic/change-color-body-style-on-one-page/
If I look at the differences in the DOM, I notice that it essentially depends on the html classes: html_stretched, html_boxed and html_av-framed-box. These classes are set in the header.php according to the settings of the Enfold options. ( html_stretched, html_boxed and html_av-framed-box ) on body they are set without html_ )
There are some filters – but nothing could bring the solution. (see old topic).
A child theme header.php, on the other hand, is quickly created because a file of that name in the child theme root directory is automatically used instead of the parent theme file.
If you only want to use the framed layout for a specific page, it is easier to use the reverse method – set the framed layout setting globally and change it to boxed or stretched for all other pages.
Long story short. Upload to your child-theme route directory a header.php copy and edit it.
search for that line ( around line 26) :
$style = $avia_config['box_class'];
if you set the stretched layout – and want to have for a specifc page a boxed layout –
or you have set the boxed layout and want only one page to be in stretched layout – replace it by:
if (is_page(array(27))) {
$style = 'boxed'; // or 'stretched'
} else {
$style = $avia_config['box_class'];
}
now – as mentioned above it is not easy to get for only some pages a framed layout. So here we go the other way :
Set on Enfold options page a framed layout as global setting – and change the layout to all others that are not that page:
if (!is_page(array(27))) {
$style = 'stretched';
} else {
$style = $avia_config['box_class'];
}
now every page now is stretched except the page 27
see here example page : https://clean.webers-testseite.de/impressum/ this page is framed – all others are stretched.
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hey mosaic,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 767px) {
.responsive .single-product-main-image {
margin: 0;
}
.woo-variation-product-gallery {
width: 100%;
margin-bottom: 0;
}
}
see the screenshot below for the expected results.
Best regards,
Mike
Hey So Evolve,
You could use the shortcode wand in the classic editor to create your button:

then copy the code to your widget area HTML widget.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:

and ensure that it is activated, then add the above code and save.
Best regards,
Mike
Hi,
I see now your shop page is working, this looks like a conflict between a plugin and the theme.
You could enable each plugin one at a time to find the one that is a conflict, and stop using it.
Unfortunately we are limited to offering support for plugins.
Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
Best regards,
Mike
Hey Julien ,
Each license is only purchased once and has lifetime updates, the support for each license is only good for either 6 or 12 months depending on what was purchased.
If you purchased all of your client licenses in your Envato account, you would also need to purchase the support renewal for your clients in your account. Envato doesn’t allow transfer of licenses.
As for updates, if all licenses are from your account with your Token, then the client may need your help to update, expressly for older versions that are using the old Envato API, pre v5
They will first need to be manually updated, and then you can create a new Token for the client. You should be fine after that, unless Envato changes again in the future.
Also note that Envato has a daily limit on update checks, I believe that is 20, so after 20 checks you will need to wait 24 hours. If one client has an old version that has the old API and checks 20 times, all other of your licenses will not update.
You will probably need to review each site and manually update everyone to v7.1 and ensure that all Tokens are working, then going forward every thing should be fine.
Note that the Token needs specific permissions, the Envato Market plugin requires fewer permissions and might be better for you.
To manually update Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.
I hope this helps.
Best regards,
Mike
Hi, my WooCommerce product images are full width when viewed on mobile on my websites that use other themes. On my Enfold website they aren’t full width on mobiles and have white space on the right of the image.
Ich habe 2 Bilder. Das erste Bild ist 1200 x 400px und eine Foto. Das zweite Bild 600x300px ist ein Text. Nun möchte ich das zweite Bild mit dem Text über das erste Bild legen. Dies soll auch reponsiv sein. Geht das mit Enfold?
Translate by google – Sorry –
I have 2 pictures. The first image is 1200 x 400px and a photo. The second image 600x300px is a text. Now I want to overlay the second image with the text on top of the first image. This should also be reprosive. Is that possible with Enfold?
Julien Guest
Hi
I bought for my clients about 30 enfold on Envato.
It’s the theme I’m using the most..
Do I need to buy each year a license for each to maintain the updates?
Or do you have price group because it’s to expensive if I had to buy a license each year for each.
Thanks for answering
EmilyGuest
I’m using your theme Enfold Shop (e-Commerce). I’ve recently encountered some problems, and my image gallery can’t load properly. I don’t know if it’s a conflict with the enfold theme. I recently updated PHP version 8.2. If I can’t display images, I won’t be able to edit all my product pages. This is very bad for my website. I am also asking my hosting customer service whether it is related to my hosting memory.
And this page on my website can’t be displayed either. Other category pages can be displayed. https://www.smartyleowl.com/shop/
Looking forward to your reply!
Hi,
If you are looking to change the menu text while the transparent header is active, then that can be set under Enfold->Theme Options->Transparency Options.
Best regards,
Rikard
Hello can you help with try to Download of files for demo Enfold 2017 didn’t work! – You might want to try reloading the page and then try again.
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hey –
basically none of the advanced styling in my Enfold theme options seem to be responsive. I’ve cleared cache, checked plugins by disabling them, etc. it does not seem to work, no matter what i change. I am specifically trying to change header and paragraph font styling. None of them work.
Hey Ad-Min747,
Please try the following in Quick CSS under Enfold->General Styling:
#footer-page a {
text-decoration: none;
}
Demo import: it’s not possible to import demos when using OVH unfortunately. Please try importing the demo on a site using different hosting, or on a local site. You can then export the theme settings in the theme options. The content can be transferred by copying shortcodes, which can be displayed by activating debug mode under Enfold->Layout Builder->Show Advanced Options. You should also be able to use a plugin which will duplicate/transfer your site from one place to another.
Best regards,
Rikard
Hi,
Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:
#footer .avia-svg-icon {
height: 2em;
width: 2em;
}
Best regards,
Rikard
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi Ismael,
Thank you for your answer.
I just updated the theme and I had already enter the name or slug “communes” in Enfold > Layout Builder > Activate Your Custom Post Types For ALB. Please find below what’s wrong :
I have already tried to enter texts in both areas but when I publish, the elements in the area built with AVIA BUILDER are not displayed.
Thank you for your help,
Best regards
-
This reply was modified 1 year ago by
sitadi.
Hi,
1.) The changes in the Advanced Styling panel aren’t taking effect because of an invalid css code in the Quick CSS field:
/* REMOVE HEADER LINE */
#top .av_header_with_border.av_header_transparency #header_main {
border: none;
The second css rule was not closed correctly -— it was missing a curly brace. We have corrected this. You can also adjust the default menu color in Enfold > General Styling > Logo Area > Logo Area Font Color.
2.) We manually removed the space from the shortcodes again. Unfortunately, we are not yet sure why it’s behaving like this. Let us know if the issue occurs again.
Best regards,
Ismael
Hey tsays,
Thank you for the inquiry.
The issue is caused by this css code, which limits the height of all second Color Sections on the site.
#av_section_2 {
height: 75vh!important;
min-height: 600px!important;
display: flex!important;
flex-direction: column!important;
justify-content: center!important;
position: relative!important;
overflow: hidden!important;
}
Please remove the css or adjust it so that it only applies to specific elements on the page.
— https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
Ismael
Hey jnightingale,
Thank you for the inquiry.
You can directly override the header.php file in your child theme or insert widgets into the header area. Another option is to enable the settings in Enfold > Header > Extra Elements > Header Phone Number/Extra Info. Please refer to the documentation for more info.
— https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
Ismael