You can create a custom footer page that can be selected under Enfold > Footer > Default Footer & Socket Settings > Page-based Footer options. In the footer page, add two sections, one for mobile and another for desktop view. To control their visibility on different screen sizes, go to Advanced > Responsive > Element Visibility settings. Let us know if you need more info.
That’s not it. I’ve tested this out also. There is another video on this same page that doesn’t work still. It doesn’t now “share”. But I wonder how the top video is working now? Anyways, do you know why the bottom one still isn’t.
Hello,
On my home page on the top I have 1 section with 3 columns . the column in the middle is set as black on the background (as the enfold parallax demo) but appears white in front end.
It is the same with another column down the page.
How can I fix it ?
Here is he url : https://mon-emage.com/
Thanks
Sophie
Hey, I think I replied to my old post about this — https://kriesi.at/support/topic/mobile-menu-trap-focus/ — but I’m afraid since that topic’s closed my reply may have been lost in space ;) More of my clients are wanting improvements in accessibility these days, and the mobile menu seems to be a key issue. Have y’all looked into trapping the focus (when tabbing through the site) in the mobile menu so it cycles back to the close X link instead of carrying on to the site behind the overlay? Ideally, the user could also hit escape at any time to close the menu/overlay. Any chance of adding this functionality/accessibility somehow? This is one of the sites I currently need it for: https://tortoise-tracks.org/ — thanks and lmk if you have questions.
As I mentioned in the title, I want a transparent header on mobile that turns solid black when scrolling.
It works fine on desktop, but I can’t get it to work on mobile.
Just in case this issue is caused by me tweaking the theme settings for hours, I’ve attached the login credentials so you can have a quick look before suggesting any CSS code.
Zur Umsetzung der Barrierefreiheit ab Juni 2025 habe ich Fragen, in wie fern hier bei Enfold mit Updates Möglichkeiten geplant sind.
Was mir beim umsetzen als Probleme, die nicht einfach selbst lösbar aufgefallen ist:
1.) Buttons des Cookiebanners lassen sich nicht via Tab auf der Tastatur ansteuern – wird das noch geändert?
2.) Wird es eine Option geben, die man einblenden kann, wo der Nutzer einfach die Schriftgröße selbst verändern kann? Also einfach mit + und – (Buttons via Tastatur auswählbar)?
3.) Ist das Einbinden von ARIA Attributen bei Elementen wie Buttons geplant? Habe da bei Enfold nur diesen Thread gefunden: https://kriesi.at/support/topic/aria-label/
Punkte 1 & 2 wären tatsächlich nur eingeschränkt selbst lösbar bzw. nur mit größeren Aufwand oder ggf. anderen Plugins.
Regarding the implementation of accessibility from June 2025, I have questions about how far Enfold is planning to go with updates.
What I noticed during implementation as problems that cannot be easily solved by myself:
1.) Buttons of the cookie banner cannot be controlled via tab on the keyboard – will this still be changed?
2) Will there be an option that can be shown where the user can simply change the font size themselves? So simply with + and – (buttons selectable via keyboard)?
3) Are there plans to include ARIA attributes for elements such as buttons? I only found this thread on Enfold: https://kriesi.at/support/topic/aria-label/
Points 1 & 2 would actually only be solvable to a limited extent or only with greater effort or possibly other plugins.
Hi Ismael, thank you!
i have add css and now it works… but it does the same thing at the top of the page where there is a slider and it’s not good.
How can I make the css rule only work for testimonials?
adjusting the slider’s image size for mobile so it runs full height?
You can replace the Fullwidth Easy Slider with Fullscreen Slider or use both, then adjust the Advanced > Responsive > Element Visibility settings to toggle the display of the sliders. You’ll have one slider for desktop and another for mobile view.
To adjust the position of the caption, go to the Styling > Caption panel, then adjust Caption Positioning settings.
You can use this css code to hide the logo on mobile view and make the header transparent.
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.responsive #top #wrap_all .av_header_transparency {
position: fixed;
background-color: transparent;
}
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a>img,
.responsive #top .av_header_transparency.av_alternate_logo_active .logo a>svg,
.responsive #top .logo {
display: none;
}
}
Are you trying to make the document automatically scroll and open the tabs when the links are used? If so, you can try adding this script in the functions.php file:
add_action('wp_footer', function() {
?>
<script>
document.addEventListener('DOMContentLoaded', function() {
(function($) {
function scrollToTab(selector, eventType) {
$(selector).on(eventType, function(e) {
var hash = eventType === 'load' ? window.location.hash : $(this).attr('href').split('#')[1];
if (!hash) return;
var tab = $('.av-section-tab-title[href="#' + hash + '"]');
if (tab.length) {
var parent = tab.closest('.av-tab-section-outer-container');
var pos = parent.offset();
tab.trigger('click');
setTimeout(function() {
$(window).scrollTop(pos.top - 100);
}, 100);
}
});
}
scrollToTab('.avia-buttonrow-wrap a', 'click');
scrollToTab(window, 'load');
})(jQuery);
});
</script>
<?php
});
I have “Reviews” area on the home page using “Content Slider”. On desktop the Google reviews have a white box around each review, but when I look on mobile, it is on black and not white box. Any ideas on how to fix this?
I have an open topic.
This morning I received a reply from you about it, but I can’t respond from the forum because the 6 months of support expired two days ago.
How much do I have to pay to resolve the topic that is still open?
Yes, that CSS is there but whatever is changed on it affects both the navigation bar search box and the content custom search widget. Below is the CSS for the home page content custom search widget. Is anything is this customization affecting the navigation search box? It was working correctly for several years up until the latest version of Enfold. I don’t know what changed, but rolling back to previous versions of Enfold in a staging area corrects it.
Thank you Ismael,
your suggestion changes the whole Blotlayout – it looks better on the category-page, but the layout for the blogsite changes, too. Is there a possibilitiy, to keep my layout for the blogsite
As mentioned above, this is not possible without significant modification. You may need to create a script to adjust the position of the ajax_search_response container on scroll. You can try the following css code, but it will also adjust the position of the search results container even when the page has not been scrolled.
Did you add the following css code somewhere? The previous css code should not have affected the default search field because it was specific to the search form inside the #chsearchbox container.
I created a fullwidth easy slider that looks fine on desktop. But on mobile, it isn’t responsive at all – the caption title and content are too large, and the image height needs to be a lot larger. Can someone help me figure this out?
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
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.