Hi,
I recently updated several websites to WordPress 6.6. The ones that have block editor selected in Enfold Theme Options are no longer showing the Advanced Layout Editor button on posts and pages. Pages that I previously built with the Advanced Layout Editor can still be edited, but the “Default Editor” button is not there. And I can’t use Advanced Layout Editor on new pages. I have a couple sites that have the Classic Editor selected in Enfold Theme Options and those are still working normally. Unfortunately, I have to use the block editor for the other sites because I have plugins that require it.
Is this a known issue? I couldn’t find another post about it.
Thanks for your help!
Keri
Hey Peter,
I will try, in my example I wanted to use a menu created in WordPress, so first create a menu and save the menu name for the function code later:

For the logo we will add the image via css so you will need to add the custom classes button logo

For the CTA we add the classes button cta:

Then on the page you want to use this use the option Hide Header on this page:

and add the shortcode [custom_menu menu=”test menu with logo”] to your page, adjust the menu name to suit.
Then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function display_custom_menu($atts) {
$atts = shortcode_atts(
array(
'menu' => '',
),
$atts,
'custom_menu'
);
$menu = $atts['menu'];
if (!empty($menu)) {
$args = array(
'menu' => $menu,
'container' => false,
'menu_class' => 'av-main-nav scmenu',
'echo' => false
);
$menu_html = wp_nav_menu($args);
$output = '<header id="header" style="position: absolute; top: 0;">';
$output .= '<nav class="main_menu" style="display: flex; align-items: center; justify-content: center; width: 100%;">';
$output .= $menu_html;
$output .= '</nav>';
$output .= '</header>';
return $output;
} else {
return '<p>No menu specified or menu not found.</p>';
}
}
add_shortcode('custom_menu', 'display_custom_menu');
and this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top #wrap_all .main_menu ul.scmenu {
list-style: none;
}
#top #wrap_all .main_menu .scmenu .menu-item a {
color: var(--enfold-header_replacement_menu_color);
}
#top #wrap_all .main_menu .scmenu {
background-color: rgba(0, 0, 0, 0.2);
}
body:not(.wp-admin) li.button.logo {
background-image: url(/wp-content/uploads/2024/07/logo_fysiotherapie_groningen.webp);
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
width: 200px;
margin-left: 0;
}
body:not(.wp-admin) li.button.logo a {
opacity: 0;
}
#top #wrap_all .main_menu .scmenu .button.menu-item.cta {
background-color: orange;
}
and adjust the image URL to suit
The expected results should be like this when a color section with a image is used:

Best regards,
Mike
Meine Empfehlung wäre schon eher den Code für die functions.php zu nehmen.
siehe den Endkommentar meinerseits.
Da post ids und page ids wohl offenbar bei Enfold mit als Klasse bei html geführt werden sollte es reichen nur diese aufzuführen.
Damit der Selector stärker wird solltest Du noch das html vor die Klasse setzen.
Pass auf, das alle selectoren durch Kommata getrennt sind, nur der letzte in der Reihe erhält kein Komma vor der eröffnenden Klammer.
die variablen kannst du natürlich anpassen. Je nachdem, was du ersetzen willst. Die Liste was Enfold da anlegt bezieht sich auf die Einstellungen – siehe unten – die Farben bzw. anderen Werte entsprechen den Styling-Einstellungen
html.html_entry_id_777,
html.html_entry_id_778,
html.html_entry_id_779 {
--enfold-header-color-bg: #eee;
--enfold-main-color-bg: #eee;
--enfold-footer-color-bg: #eee;
--enfold-alternate-color-bg2: #eee;
--enfold-header-color-bg2: #eee;
--enfold-socket-color-bg: #eee;
--enfold-socket-color-border: #eee;
}
Beispiel-Liste was alles von Enfold als variablen geführt werden.
:root {
--enfold-socket-color-bg:#333333;
--enfold-socket-color-bg2:#555555;
--enfold-socket-color-primary:#ffffff;
--enfold-socket-color-secondary:#aaaaaa;
--enfold-socket-color-color:#eeeeee;
--enfold-socket-color-meta:#999999;
--enfold-socket-color-heading:#ffffff;
--enfold-socket-color-border:#444444;
--enfold-socket-color-constant-font:#333333;
--enfold-socket-color-button-border:#dddddd;
--enfold-socket-color-button-border2:#888888;
--enfold-socket-color-iconlist:#333333;
--enfold-socket-color-timeline:#333333;
--enfold-socket-color-timeline-date:#000000;
--enfold-socket-color-masonry:#444444;
--enfold-socket-color-stripe:#ffffff;
--enfold-socket-color-stripe2:#ffffff;
--enfold-socket-color-stripe2nd:#bbbbbb;
--enfold-socket-color-button-font:#333333;
--enfold-footer-color-bg:#222222;
--enfold-footer-color-bg2:#333333;
--enfold-footer-color-primary:#ffffff;
--enfold-footer-color-secondary:#aaaaaa;
--enfold-footer-color-color:#dddddd;
--enfold-footer-color-meta:#919191;
--enfold-footer-color-heading:#919191;
--enfold-footer-color-border:#444444;
--enfold-footer-color-constant-font:#222222;
--enfold-footer-color-button-border:#dddddd;
--enfold-footer-color-button-border2:#888888;
--enfold-footer-color-iconlist:#333333;
--enfold-footer-color-timeline:#333333;
--enfold-footer-color-timeline-date:#000000;
--enfold-footer-color-masonry:#222222;
--enfold-footer-color-stripe:#ffffff;
--enfold-footer-color-stripe2:#ffffff;
--enfold-footer-color-stripe2nd:#bbbbbb;
--enfold-footer-color-button-font:#222222;
--enfold-alternate-color-bg:#fcfcfc;
--enfold-alternate-color-bg2:#ffffff;
--enfold-alternate-color-primary:#719430;
--enfold-alternate-color-secondary:#83a83d;
--enfold-alternate-color-color:#666666;
--enfold-alternate-color-meta:#8f8f8f;
--enfold-alternate-color-heading:#222222;
--enfold-alternate-color-border:#e1e1e1;
--enfold-alternate-color-constant-font:#ffffff;
--enfold-alternate-color-button-border:#507210;
--enfold-alternate-color-button-border2:#61861b;
--enfold-alternate-color-iconlist:#d0d0d0;
--enfold-alternate-color-timeline:#d0d0d0;
--enfold-alternate-color-timeline-date:#a0a0a0;
--enfold-alternate-color-masonry:#eeeeee;
--enfold-alternate-color-stripe:#93b652;
--enfold-alternate-color-stripe2:#82a541;
--enfold-alternate-color-stripe2nd:#94b94e;
--enfold-alternate-color-button-font:#ffffff;
--enfold-main-color-bg:#ffffff;
--enfold-main-color-bg2:#fcfcfc;
--enfold-main-color-primary:#719430;
--enfold-main-color-secondary:#83a83d;
--enfold-main-color-color:#666666;
--enfold-main-color-meta:#919191;
--enfold-main-color-heading:#222222;
--enfold-main-color-border:#e1e1e1;
--enfold-main-color-constant-font:#ffffff;
--enfold-main-color-button-border:#507210;
--enfold-main-color-button-border2:#61861b;
--enfold-main-color-iconlist:#d0d0d0;
--enfold-main-color-timeline:#d0d0d0;
--enfold-main-color-timeline-date:#a0a0a0;
--enfold-main-color-masonry:#ebebeb;
--enfold-main-color-stripe:#93b652;
--enfold-main-color-stripe2:#82a541;
--enfold-main-color-stripe2nd:#94b94e;
--enfold-main-color-button-font:#ffffff;
--enfold-header-color-bg:#ffffff;
--enfold-header-color-bg2:#f8f8f8;
--enfold-header-color-primary:#719430;
--enfold-header-color-secondary:#444444;
--enfold-header-color-color:#333333;
--enfold-header-color-meta:#808080;
--enfold-header-color-heading:#000000;
--enfold-header-color-border:#e1e1e1;
--enfold-header-color-constant-font:#ffffff;
--enfold-header-color-button-border:#507210;
--enfold-header-color-button-border2:#222222;
--enfold-header-color-iconlist:#d0d0d0;
--enfold-header-color-timeline:#d0d0d0;
--enfold-header-color-timeline-date:#a0a0a0;
--enfold-header-color-masonry:#e7e7e7;
--enfold-header-color-stripe:#93b652;
--enfold-header-color-stripe2:#82a541;
--enfold-header-color-stripe2nd:#555555;
--enfold-header-color-button-font:#ffffff;
--enfold-header_burger_color:inherit;
--enfold-header_replacement_menu_color:inherit;
--enfold-header_replacement_menu_hover_color:inherit;
--enfold-font-family-theme-body:"HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
--enfold-font-size-theme-content:13px;
--enfold-font-size-theme-h1:34px;
--enfold-font-size-theme-h2:28px;
--enfold-font-size-theme-h3:20px;
--enfold-font-size-theme-h4:18px;
--enfold-font-size-theme-h5:16px;
--enfold-font-size-theme-h6:14px;
--enfold-font-size-content-font:18px
}
Hey Ad-Min747,
I assume that your user is not admin, so see the theme option at Enfold Theme Options ▸ Layout Builder ▸ Lock Advanced Layout Builder
This removes the ability to move or delete existing template builder elements, or add new ones, for everyone who is not an administrator.
Another option might be this function in your child theme functions.php file in Appearance ▸ Editor to hide the ALB button from anyone that is not admin.
add_action('admin_head', function() {
if( !current_user_can('activate_plugins') ){
?>
<style>#avia-builder-button{ display: none; } </style>
<?php
}
});
Best regards,
Mike
Awesome new update. Thanks for the great work!
Some small feedback from me after I looked a little bit into the update.
accessibility: added aria-label=’…’ to elements where user entered a “Custom Title Attribute” in addition to title=’….’
That’s not working with the Button Element. There’s still only the title attr and not aria-label. Would also be nice to be able to fill the field with the new custom field stuff. E.g. the Button Text is “Read More” but the aria-label should be “Read More: {post.title}”
We had a website checked by an company for accessibility. They said that the main content should be wrapped in <main>. Enfold only has <div id=”main”>. I changed that div in dev tools to the main-tag and didn’t encounter any issues. Could you look into that? Would also be nice if we have <header></header><main></main><footer></footer> but I think the footer stuff would be more complex because the footer tag is only the socket and not the #footer. Maybe <footer><div id=”footer”></div><div id=”socket”></div></footer> but that could potentially break someones css.
We are currently doing a lot of accessibility changes in our projects so I maybe come back with some further change requests. I already reported the aria-expanded stuff for the toggler element 5 days ago and you implemented it :)
All the best,
Patrick
Hi,
For 6.0 I added filter avf_form_datepicker_args that allows to change all arguments. See https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20Elements/Contact%20Form/avf_form_datepicker_args.php
@Guenni007
today button
This is the default behaviour of this element.
Best regards,
Günter
Guten Tag liebes kriesi-Team,
ich bräuchte in der Funktion “Datumsauswahl” die Möglichkeit direkt bis zum Jahr 1920 zurückzugehen. Über Umwege geht das nur, indem ich 1944 auswähle und dann mit dem Button “vorher” ein jahr zurück gehe. Dann bekomme ich die Jahre davor zur Auswahl angezeigt.
Kann ich diese Option einstellen?
Vielen Dank.
Markus
Hi,
Thanks for the feedback, the issue is that the example link is using a normal menu and you are using a mobile burger menu for your desktop, these are two different menus.
Whe I checked your site I found no “Book Now” button so I created a new one for you, and added the required custom class menu-item-avia-special cta which was disabled on your site, and then I added this css:
.html_burger_menu_active #header .avia-menu .menu-item-avia-special.cta {
display: block !important;
}
and Guenni007’s solution works great, thanks for sharing Guenni007!

you will need to adjust the button url as I didn’t know the like you wanted.
Best regards,
Mike
Hey lelouxwebdesign,
In your sidebar add a Custom HTML widget with this code:
<a href="javascript:history.back()">Go Back</a>

then in the post sidebar you will see a “Go Back” link

you can style it as you wish and clicking it will send the visitor to the last page they viewed.
If you want to use a button, you can create a buton with the shortcode wand and use this as the manual link: javascript:history.back()

[av_button label='Go Back' icon_select='yes' icon='ue831' font='entypo-fontello' button_type='' link='manually,javascript:history.back()' link_target='' download_file='https://' attachment='' attachment_size='' downloaded_file_name='' size='large' position='center' label_display='' title_attr='' size-text='' av-desktop-font-size-text='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' margin='' margin_sync='true' padding='' padding_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-margin='' av-small-margin_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-margin='' av-mini-margin_sync='true' av-mini-padding='' av-mini-padding_sync='true' color_options='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='' sc_version='1.0' admin_preview_bg='']

Best regards,
Mike
Hey Aubin,
Thank you for the inquiry.
1.) Please ask your hosting provider to create a site backup or restore point prior to changing your WordPress site’s URL from non-www to www. After creating a site backup, follow the steps below:
– Log in to your WordPress admin dashboard.
– Navigate to Settings > General.
– Update the URLs:
— In the “WordPress Address (URL)” field, change your URL from http://example.com to http://www.example.com.
— In the “Site Address (URL)” field, change your URL from http://example.com to http://www.example.com.
– Save Changes:
— Scroll down and click the “Save Changes” button.
– Update .htaccess File (optional but recommended for SEO and redirecting):
— Access your website’s files via FTP or the hosting file manager.
— Locate and edit the .htaccess file in your website’s root directory.
— Add the following code to redirect non-www to www:
`
# Redirect non-www to www
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
`
— Replace example.com with your actual domain name.
– Clear Your Cache:
— Clear your browser cache and any caching plugins you might be using.
– Verify the Changes:
— Check your website to ensure it loads correctly with the www prefix.
– You may need to update the DNS records if necessary. Please ask your hosting provider about this before proceeding.
2.) Are you using the WooCommerce plugin? The product page should have filter or sorting options by default if you’re using the plugin. Please check the documentation below for more info.
3.) You will have to install a plugin such as WPML or Polylang in order to create a multilingual site or add a language switcher. Please check the links below:
// https://wpml.org/documentation/theme-compatibility/enfold/
// https://wpml.org/tutorials/2016/02/enfold-theme-and-wpml/
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
Ismael
Hello Teacher,
I have several questions
2- How to add a filter page on each page ? I need to add a filter by name or price using enfold theme . How to do it please ?
3- How to add a button of language ? button to choose between English or French language please
Thanks for you answers
Hey northorie,
Thanks for the link to your site, I see that you have a Advanced Layout Builder (ALB) post that has been saved as a WordPress Block Editor post, to correct click the ALB editor button and then save again and edit in the ALB editor.

Best regards,
Mike
It wouldn’t be such a problem if the Learn More button didn’t link to my other website’s privacy policy.
I cannot find where to turn this off (I looked in Enfold Child > Cookies and Privacy and everything is off. I cannot find where to change the what the Learn More button points either. In Settings, I define the privacy page as the page on this site (see private box).
Hi,
To me your example page the popup:

is the same as our lightbox popup examples, I think this solution would be the best one to follow, it uses buttons but with a minor adjustment it could use plan text links, you can see that the popup has the “X” to close, in the screenshot there is only two words, but you can add as much text as you like:

In your example page there are five links and popups:

Are you going to use this in the same way? If so how many popups do you want to use?
Best regards,
Mike
Hi,
Please try the following in Quick CSS under Enfold->General Styling:
#top .avia-button:hover .avia_button_background {
opacity: 0;
}
Best regards,
Rikard
my entire website just reseted back to default and i lost everything. then when i use the Jetpack to try to restore my website it complete crashed the site and wasnt able to get into it any more so i contacted WordPress support team and they said they see there this error :
[12-Jun-2024 12:44:40 UTC] PHP Fatal error: Access level to avia_sc_chart::shortcode_insert_button() must be public (as in class aviaShortcodeTemplate) in /srv/htdocs/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/chart/chart.php on line 49
Hey amyncuih,
Thank you for the inquiry.
You can adjust the default style of the Button elements in the Enfold > Advanced Styling panel, or you can use this css code:
#top #wrap_all .main_color .avia-button {
color: red;
}
Best regards,
Ismael
Hi,
To make the logo link smaller for mobile try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
@media only screen and (max-width: 480px) {
#top.page-id-11754 #header_main .logo {
width: 60px;
max-width: 60px;
}
}
but it also looks like you will need to make the button in the slider come to the fore ground with z-index, try around 99
I have not used the revolution sliderI’m not sure where this setting is, perhaps you do, or try checking the revolution slider documentation.
Best regards,
Mike
We’re having a lot of screen reader accessibility issues with the accordion/toggle element. We are testing our site with NVDA, a free screen reader (https://www.nvaccess.org/download/).
The biggest issue is, though each accordion section can be expanded using the enter key, the screen reader can’t read the text contained in the expanded panel. If there is a focusable element within the panel, the user can tab to that, and then the screen reader can access any content within the panel that comes after that focusable element; but if there is no focusable element, there doesn’t seem to be any way for the screen reader to access the content of the expanded panel.
There are also issues with the header of each accordion section. When the header has focus, the screen reader reads the header text, but does not state if the section is open or closed, and does not clearly indicate what type of control the user is interacting with. For example, for a section titled “question one”, the screen reader reads “tab control question one filled right pointing small triangle tab selected 1 of 1”. Ideally, it would say something more like “question one button collapsed” – this concisely tells the user the title of the section, conveys that it’s an interactable expand/collapse element, and indicates the current expanded/collapsed state.
I was able to replicate the screen reader issues on the accordion demo page, https://kriesi.at/themes/enfold-2017/elements/accordion/, so I don’t think the issue is with our child theme.
Here are some resources that describe how to implement an accessible accordion element, and that lay out the accessibility requirements: https://www.w3.org/WAI/ARIA/apg/patterns/accordion/ and https://www.aditus.io/patterns/accordion/.
https://www.w3.org/WAI/ARIA/apg/patterns/accordion/examples/accordion/ has an example of an accessible accordion.
Is this something that can be addressed in a future Enfold update, and in the short term, would there be a way to apply a fix via our child theme?
Thank you for your help with this!
Hey amyncuih,
Thank you for the inquiry.
You can define a different font for the Button element in the Enfold > Advanced Styling panel. The Button element can be found under the Misc section. Please note that this will affect all buttons across the site. Unfortunately, you cannot assign a different font to a specific block in the builder.
Best regards,
Ismael
Hi,
Thank you for the update.
Try to replace the selector “.home” with “.page-id-362”.
.page-id-362 .av-image-caption-overlay-center p {
border-radius: 3px;
padding: 10px;
font-size: 12px;
text-decoration: none;
display: inline-block;
border-bottom-style: solid;
border-bottom-width: 1px;
margin: 3px 0;
line-height: 1.2em;
position: relative;
font-weight: normal;
text-align: center;
max-width: 100%;
color: var(--enfold-main-color-button-font);
background: var(--enfold-main-color-button-border);
transition: all 0.4s ease-in-out;
box-shadow: none;
border: 0;
padding: 25px 50px 23px;
font-size: 28px;
min-width: 200px;
}
Please make sure to purge the cache before checking the page.
Best regards,
Ismael
Hi,
Thanks for the update. If you only want the CSS to apply to the home page, then you can use this instead:
.home .av-image-caption-overlay-center p {
border-radius: 3px;
padding: 10px;
font-size: 12px;
text-decoration: none;
display: inline-block;
border-bottom-style: solid;
border-bottom-width: 1px;
margin: 3px 0;
line-height: 1.2em;
position: relative;
font-weight: normal;
text-align: center;
max-width: 100%;
color: var(--enfold-main-color-button-font);
background: var(--enfold-main-color-button-border);
transition: all 0.4s ease-in-out;
box-shadow: none;
border: 0;
padding: 25px 50px 23px;
font-size: 28px;
min-width: 200px;
}
Best regards,
Rikard
Hey Monika,
Thank you for the inquiry.
You can use this css code to adjust the style of the caption overlay.
.av-image-caption-overlay-center p {
border-radius: 3px;
padding: 10px;
font-size: 12px;
text-decoration: none;
display: inline-block;
border-bottom-style: solid;
border-bottom-width: 1px;
margin: 3px 0;
line-height: 1.2em;
position: relative;
font-weight: normal;
text-align: center;
max-width: 100%;
color: var(--enfold-main-color-button-font);
background: var(--enfold-main-color-button-border);
transition: all 0.4s ease-in-out;
box-shadow: none;
border: 0;
padding: 25px 50px 23px;
font-size: 28px;
min-width: 200px;
}
Best regards,
Ismael
Hello Mike,
thanks for your reply and sorry for only responding now.
1) Yes, we had previously used the WP Fastest Cache plugin. I’ll try it out again in a few days.
2) Blog settings: When I do it this way, exactly what we don’t want happens. If you click on a blog category, all articles with full text appear one below the other. See in your demo: https://kriesi.at/themes/enfold-2017/category/personal/
This is not how it should be, but like this: https://sii-talents.de/category/buecher/
3) I don’t know which plugin this should be. Can I simply delete it in the custom CSS?
to 4) If I do that, ALL buttons are in the selected colors. But only one button should have the “color 1” or “theme subtle color”, which I want to select independently of the “main color > font color for links, text initials and other elements”.
Where is the theme sub-style color generally set? I have never seen this anywhere in all my years of using Enfold.
Best regards,
Susanne
Hey Susanne,
1) do you mean the caching plugins were preventing your site from knowing that a update was available for the theme? I have not heard of this issue before, but you could try the WP Fastest Cache plugin, or when Envato (Theme Forest) notify you that an update is available you could disable your plugin and then check for the update.
2) In my demo the “blog” page is selected as the “blog”

and that page uses ALB elements to create the blog

please see our demo here
3) on your site it looks like you have custom css added causing the dark color, perhaps it is from a plugin:
a:visited {
color: #333333;
}

4) if you want to override the color for all buttons try this:
#top .main_color .avia-color-theme-color-highlight,
#top .main_color .avia-color-theme-color {
background-color: red;
border-color: red;
}
adjust to suit
Best regards,
Mike
Hey craig374,
Please try the following in Quick CSS under Enfold->General Styling:
#custom_html-2 button {
background-color: var(--enfold-header-color-primary);
color: var(--enfold-header-color-constant-font);
border-radius: 3px;
}
#custom_html-2 button:hover {
color: #000;
}
Best regards,
Rikard
Good morning!
I have several problems on sii-talents.de – I hope you can help.
1) I had to uninstall the CAching plugins because they were preventing the site from updating. Which plugin do you recommend so that it still works?
2) Blog display (this is a problem on all websites): My goal is to have a custom blog layout. Like here: https://sii-talents.de/aktuell/
But:
If it is set in the Enfold theme options that the blog should be displayed on a specific page, then it is not possible to have “a grid layout” for the blog layout when clicking on a category. The blog articles then appear completely below each other. That is stupid.
So I play a trick and don’t select a page as a blog in the Enfold theme options, simply design a blog page that is not set as such and select the “grid layout”. But that’s not good for search engines! So how can my goal be achieved?
3) Concerns the menu in the socket: After clicking on a menu item, the font turns dark gray and then the visitor does not see the menu link – the background is also dark gray. But: this is not done in the layout settings. The font is set to white in all cases.
4) The main color is set for the font color for links, text initials and other elements. Other elements are button colors, e.g. in slideshows. How can I separate this without having to set the button color separately on each individual page?
best regards
Susanne
Hello,
This website will intermittently not load the background images, color sections, or button colors. It ends up pretty black and white. This problem is intermittent, but happening frequently enough that it’s an issue. I can’t recreate it on demand, but often when I check the site, it is not loading these features. Some days it works fine. Others times, it won’t load correctly on any device despite no changes to the site.
I can provide screenshots from multiple devices of the issue, if needed.
I believe WordPress, Enfold, and plugins are update date.
Any ideas?
Thank you in advance,
Michael