So I have Enfold 6.x / LS 7.12.4 on our live site, and Enfold 7.1.1 / LS 7.14.4 on a staging clone.
On both sites, I can open the wp-admin/admin.php?page=layerslider main admin page. But I can not edit a single LayerSlider slide any more. We rarely do this, so I don’t know when it stopped working.
When loading a slider for editing, the blue loading layer of LayerSlider just stays on top forever. No JS Console messages, and even with WP DEBUG enabled, no serverside errors or messages.
On the LayerSlider Admin page, an update of LS is announced, this is of course not yet included in Enfold. Would that solve the problem? What else could resolve this problem?
Regards
Ulrich
Hi Kreisi team,
I’ve tried everything: perplexity, forums, trial and error: I’m not getting anywhere. I have been embedding annual reports as posts on the homepage of the http://www.kms-kleve.de website for a few years now. This year, the post image of the 2024 annual report is suddenly cut off at the top and bottom.
I have tried the following so far:
– Duplicating the 2022 annual report in the backend and simply replacing the images (in the same format and size)
– Tried various settings in the Enfold blog settings
– In WordPress, set the image sizes for import in height to ‘0’
– Deleted image and reloaded
– Deleted and reloaded the entire post
– Deleted, deleted, deleted caches
– Post recreated with Avia
– Post recreated with the standard editor
The image of the annual report 2024 is not displayed in the desired size – as with the other annual reports. The image should be displayed in full size like the others. What is the error? Thank you for your help!
Best regards, Lutz
Hi,
Thank you for the update.
The desktop score is now 98, and 80 on mobile. CLS is now resolved, but there’s still an LCP issue, which now points to the text element below the first gallery. It will probably help to further reduce the size of the background image (kuechen-schmidt_edelstahl_footer-bg.jpg), which is still 43KB and larger than necessary. Optimizing the slider images such as kuechen-schmidt_stellenanzeige_Technischer-Koordinator_2406.webp (88KB), kuechen-schmidt_service-check_kundenzufriedenheit-1-300×150.jpg (32KB), along with the others would also help.
Best regards,
Ismael
Thanks for the tip – that made me realize the actual error in the header. The background image in the header is only 1920px and only 8KB via WebP. Before, I had 2500px with 15KB because of large displays/Retina => both shouldn’t be a problem with Insights. But: at the top of the second header with the phone number, the old jpg version was still embedded via CSS at an incredible 32KB :D
Hope that helps.
I’ve used the other CSS.
I’ll let you know after a few tests.
Hey Tilman,
Thank you for the inquiry.
The overlay option is not available for the Easy Slider element by default, but you can recreate the same effect using this css code.
.avia-slideshow .avia-slide-wrap:before {
content: '';
display: block;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 10;
position: absolute;
left: 0;
top: 0;
}
Let us know if you need more info.
Best regards,
Ismael
Hey tonyiatridis,
Thank you for the inquiry.
To adjust the color of the testimonial arrow, please add this css code:
.avia-testimonial-arrow-wrap .avia-arrow {
background-color: #c8cedd !important;
border-color: #c8cedd;
}
The text or span element in the testimonial content has inline styling, so you’ll need to remove it in order to assign a different text color.
<span style="color: #808080;">“When it comes to customer service, Brookwood Construction is top notch. I have a great level of comfort knowing Brookwood is behind the wheel, driving the project to completion.”</span>
Remove this part:
style="color: #808080;"
Let us know the result.
Best regards,
Ismael
HI.
For the About Page I have 2 versions of the Fullwidth Easy Slider. The first row includes the original Slider, now set up for Desktop mode. I have a duplicate slider underneath, set-up for Tablet mode and a third slider now set up for mobile mode. NOTE: the caption title and caption text will not display for tablet mode. The caption text will not display for mobile mode (the 2nd duplicate slider).
NOTE: I had been using 1 slider for the page however the text truncated for all modes save for desktop mode, thus the reason for creating two duplicate sliders on the About page.
Please advise on how to resole the issue with the text not appearing. Note: presently i am using place hoder text for the tablet slider.
Note: the page in question is: https://blgenvironmental.com/about/
You have permission to enter the dashboard and edit the About page.
Dear team,
on my Dev. page below I use the full width slider in the top section. I wan t to avoid font animation and font background – but was not able to find, how. Can you help? thx a lot & best regards Tilman
see here an example page ( only with a color-section on that page that represents the footer-page )
https://webers-web.info/navigation/
for that menu item in the main nav i gave a custom-class to that menu-item: pseudoburger and used the label :
<span class="av-hamburger custom-burger av-hamburger--spin"><span class="av-hamburger-box"><span class="av-hamburger-inner"></span></span></span> – this is exactly the usage of the enfold burger icon – plus a custom-class (custom-burger).
the color-section got the ID: pseudoburger. (#pseudoburger)
( or if you use the footer-page for that – then you had to adjust all to that ID : #footer-page )
i placed now a snipptet to my child-theme functions.php:
function a_pseudo_burger_menu(){
?>
<script type="text/javascript">
(function($) {
$('body').on('click', '.pseudoburger > a', function() {
$('#pseudoburger').toggleClass('visible-page');
$('.custom-burger').toggleClass('is-active');
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'a_pseudo_burger_menu');
and on quick css:
#top #pseudoburger {
position: fixed;
top: var(--enfold-header-height);
left: 0;
z-index: 50;
height: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 1s ease;
}
#top #pseudoburger.visible-page {
opacity: 1;
visibility: visible;
transition: opacity 1s ease;
}
#top .header_color .custom-burger.is-active .av-hamburger-inner,
#top .header_color .custom-burger.is-active .av-hamburger-inner::before,
#top .header_color .custom-burger.is-active .av-hamburger-inner::after {
background-color: darkblue !important;
}
Look to your example page of thedive.com – its footer is exactly the burger content ;)
so maybe styling a footer-page and redeclare the hamburger icon with a different event that brings that footer to fullscreen and to fixed position ( left: 0 ; top: var(–enfold-header-height) ) is a possible solution. ( no automatic menü – but that way you like to have it)
Hi,
Glad to know it’s working. Regarding the class selector .dmci, it’s probably not working because it’s being overridden by css rules with higher specificity. You may need to adjust it and use more specific selectors. Please remove the previous css code, then replace it with this:
#top #header .av-main-nav > .dmci a {
letter-spacing: 0.0em;
}
This might help: https://css-tricks.com/specifics-on-css-specificity/
Best regards,
Ismael
Hey Sven,
Thank you for the inquiry.
The LCP is the background image used in the header container (kuechen-schmidt_edelstahl_footer-bg.jpg). It’s 2000px in width and 46Kb in size, which is a bit heavy. We recommend significantly reducing the image size, make sure it’s compressed and preload it using the plugin below.
— https://wordpress.org/plugins/preload-lcp-image/
CLS could also be improved by limiting the height of the revolution slider on smaller screens, making sure it doesn’t shift the page while the slider is loading. Please add this css code:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top #main #revolutionslider_1 {
max-height: 220px;
overflow: hidden;
}
}
Best regards,
Ismael
Hey tonyiatridis,
Thanks for reaching out.
Please try this css code to adjust the font color of the sorting buttons:
#main .main_color #js_sort_items a, #top .main_color #js_sort_items a.active_sort {
color: #ffffff;
}
#main .main_color #js_sort_items a:hover {
color: #bbe2ff;
}
.main_color .text-sep {
color: #e1e1e1;
}
Example:
View post on imgur.com
Best regards,
Ismael
Hi,
You can try this css code to adjust the top spacing of any text block element next to a code block.
.avia_codeblock_section + .av_textblock_section {
padding-top: 50px;
}
Best regards,
Ismael
Hey navindesigns,
Thank you for the inquiry.
1.) You can adjust the Min. Mobile Font Size in the Style > Text & Typography panel, as shown in the screenshot below. You can apply a custom css class in the Attributes tab and control the font size using custom css.
View post on imgur.com
2.) Please try this css code to adjust the width and position of the SVG wave separator.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.avia-section.av-wxcp-c90200cb46284bf3caa8c1c1fbba7cb6 .avia-divider-svg-top svg {
height: 50px;
width: calc(100% + 300px);
left: 20%;
}
}
Let us know the result.
Best regards,
Ismael
1- How can I make the button “View Services” in the top section larger on mobile?
2- also on mobile how can stretch out the waves so it’s more subtle? screenshot here – https://i.ibb.co/svP1g1Rp/image.png
Hi Rikard,
yes I know because when I change that code and publish, all content blocks except the top block disappears as you can see in the Loom.
Best
Michiel
if you like to bing those arrows to the center of the gallery height:
#top div .avia-gallery {
position: relative;
}
.avia-gallery.av-slideshow-ui .avia-slideshow-arrows {
width: 100%;
height: 60px;
top: calc(50% - 30px);
}
#top .avia-slideshow-arrows a {
top: 0;
}
Hi,
The ID “#after_section_1” is now missing, perhaps you updated the page? So I added the ID “#add_50_px_pading” to the element:

and this css:
.page-id-4128 #add_50_px_pading {
padding-top: 50px;
}
Now it is working, please clear your browser cache and check.
Best regards,
Mike
Hi Rikard,
Thanks for your response. Unfortunately that didn’t solve the issue. I even completely removed all <> in the titles on the page but still all content blocks are being removed after publish, except the content block on the top.
Best
Michiel
maybe put each of those elements in a separate 1/1 container. The icon-box and the gallery.
or try in quick css:
#top div .avia-gallery {
position: relative;
}
Hey John,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.page-id-4128 #after_section_1 {
padding-top: 50px;
}
adjust to suit.
Best regards,
Mike
or – more flexible in styling for complete control over the whole screensize ranges – working with grid layout:
#top #wrap_all .avia-custom-gallery .avia-gallery-thumb {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
grid-auto-flow: row;
gap: 20px; /*** if you like to have a space between the images ***/
}
#top #wrap_all .avia-custom-gallery .avia-gallery-thumb a {
width: unset !important;
}
when images are less than 180px – a new row will be created
on 6 items besides each other the setting vor less than 767px is allready set to 33% – and this looks nice to me.
Maybe you only like to influence the range inbetween:
@media only screen and (min-width: 768px) and (max-width: 989px) {
#top .avia-custom-gallery .avia-gallery-thumb a {
width: 25% !important;
}
}
best would be to have a custom class on that element f.e. bg-colored-sub-menu
#top .av-submenu-container.bg-colored-sub-menu {
background-color: lightblue;
}
this will only have an effect on the submenu – if you like to have the same bg-color for the list items:
#top .av-submenu-container.bg-colored-sub-menu a {
background-color: lightblue;
color: #000;
border-color: darkblue
}
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top #main .avia-gallery.av-mb6m8z6a-b9f99ac9fd31fe48d94c453aabd891f1 .avia-gallery-thumb a {
width: 50%;
}
Then disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression
and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
Then clear your browser cache and any cache plugin, and check.
Best regards,
Mike
is it a gallery or a masonry gallery?
Rikard’s code should do the job – but the specificity is the same as the original rule. So you need to be more specific in your selector or override it with !important.
@media only screen and (max-width: 767px) {
#top .avia-gallery .avia-gallery-thumb a {
width: 50% !important;
}
}
or
@media only screen and (max-width: 767px) {
#top #wrap_all .avia-gallery .avia-gallery-thumb a {
width: 50% ;
}
}
if you do like to have it only on that gallery – use a custom class to that element.
Ernst GrubbauerGuest
Ich habe vor einigen Jahren die Betreuung der Website su-hartpurgstall.at übernommen. Zum Käufer und ursprünglichen Administrator von Enfold zur Website, Sonja Winkelbauer, gibt es keinen Kontakt mehr. Die Website ist bei Easyname registriert. Nun soll ein Upgrade der PHP-Version auf 8.x erfolgen. Dazu wird die aktuelle Version des Themes benötigt, laut Beschreibung https://kriesi.at/support/topic/fatal-error-unparenthesized-a-b-c-d-e/ !
Wo und wie erhalte ich die neue Version?
Müssen wir eine neue Lizenz erwerben?
Für das Kriesi-Supportteam wurde ein temporärer WordPress-User angelegt.
MfG Ernst Grubbauer
Rückmeldungen an (Email address hidden if logged out) – +43 664 4051545
Eventuell wird es dir auf dieser Seite deutlicher. https://webers-testseite.de/sticky-sidebar/
Das unmittelbare Elternelement zu dem Sticky Element ( bei Columns in einer Color-Section ist es der entry-content-wrapper ) muss der Flex-Container sein. Und auf deiner Seite muss gelten:
.responsive #top {
overflow-x: visible;
}
#top #wrap_all {
overflow: visible;
}
Da es nur Sinn macht, wenn die Columns nebeneinander liegen, setzt man die Flex Bedingung am besten nur für diesen Fall ein; also für screens die größer sind als der Umbruchpunkt (768px oder 990px)
Hi there,
yes, I need still some help. My CSS is working quite well in desktop mode, but it is not really responsive. When switching to tablet and mobile view, the background image is getting compressed.
Any idea for a good looking solution?
Best regards
Bettina