Rikard,
We need to resolve a critical communication issue.
A different person from your team replies every single day, asking for the web access data we have already sent multiple times. This is inefficient and has to stop.
Please:
Designate one person to handle this.
Have your team check the email chain before responding.
We cannot continue in this cycle.
Regards,
it is the place where you have entered the text for that button.:
Open the slide itself – a new popup then will show the options for that slide. Click on the advanced tab. There should be a link settings – on the right side of the label there is the color of that button. Sadly there is no custom color with color picker option – but a lot of alternatives to your given choice.
If you have set the on styling tab to show “Use first slides caption as permanent caption” then you had to open the first slide.
_______________
If that’s not enough, you would have to set the background color via CSS.
better way is to do it via a custom class on your slider – but try:
#top.page-id-1104 .avia-slideshow .avia-slideshow-button {
background-color: #026538;
}
#top.page-id-1104 .avia-slideshow .avia-slideshow-button:hover {
background-color: #719430;
}
Hi
My client would like to change the verbiage on the green and white fullscreen slider button at the top of the home page.
Issue: It is not intuitive as to where it is configured. I have checked around all of the fullscreen slider options on the home page to no avail.
Please advise as to where it should be set.
Page: https://blgenvironmental.com/
Screenshot: https://tinyurl.com/26e4tema
Dear Team, the Enfold contact form isn’t displaying correctly on my phone. The fonts are displayed irregularly, the background color has disappeared, and the individual fields are too long. The problem is on both sites (please see the links in the private content)
I’ve cleared the cache several times on the desktop version and also on my phone, clearing the cache for both Safari and Google Chrome.
I’ve tried several CSS Codes I’ve found in the forum. No one worked.
Could you please help me?
Thank you so much!
Hi, I already learned that the excerpt has to be set manually if the layout editor is in use in a blog post.
Here: https://kriesi.at/support/topic/blog-excerpt-not-displayed/
To be honest, I think this is not a very smart solution and there should be a way to have an automated excerpt.
The current mode causes a plus on work and the risk that changes, made to the text, are not displayed because the excerpt is not updated.
I really would appreciate if the TEAM offers a smarter solution to this issue.
Love & Beer & Rock’n’Roll !
try :
@media only screen and (max-width: 989px) {
#top .header_bg {
background-color: var(--enfold-header-color-bg) !important;
}
}
adjust media-query width to your needs
Hi,
I’m experiencing an issue with the Enfold theme on mobile/small screens:
When the hamburger menu is active, the top header area briefly flashes white when I start scrolling down. After this quick flash, it fades back to the intended header background color.
The issue occurs consistently on my own website, but to make sure it wasn’t caused by a local customization, I tested it on several official Enfold demos as well. The same white flash appears in the Enfold Knowledgebase Demo, so the bug seems to affect Enfold’s default configuration too.
It happens only on narrow/mobile viewports and only at the moment when the page first starts scrolling. The header appears to transition through a white state before applying its final background color.
Could you please take a look or let me know if there’s a known fix?
Thanks!
Hi,
Thank you for the update.
We just tested the code again and it seems to be working as it should.

Have you tried removing this css code?
#top #header.header-scrolled a {
color: #ffffff !important;
}
Please provide a screenshot of the element that you’d like to change. You can use platforms like Savvyify, ImgBB, PostImages or Dropbox.
Best regards,
Ismael
Hey collinsfgc2025,
Thank you for the inquiry.
You have to look for the View icon in the top right corner of the editor. Please check the screenshot below:

Let us know if you have more questions.
Best regards,
Ismael
Are you using this solution?
https://kriesi.at/support/topic/image-title-on-hover/#post-1490549
because there the selector is for all elements with title attribute ( *[title] ) – so this will include icons
Hi, you helped me remove the image title on hover, but I also need to remove it from the icons. Can you help with that?
Sample: https://imgur.com/a/PyEH0Ph
Original ticket: https://kriesi.at/support/topic/image-title-on-hover/
Hey ti2media,
Try adding this snippet to your child theme functions.php:
function add_sticky_info_box() {
?>
<style>
.sticky-info-box {
position: fixed;
bottom: 120px;
right: 20px;
width: 300px;
height: 300px;
background: #ffffff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 9999;
display: flex;
flex-direction: column;
padding: 20px;
box-sizing: border-box;
transition: opacity 0.3s ease;
}
.sticky-info-box.hidden {
display: none;
}
.sticky-info-box-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 15px;
}
.sticky-info-box-title {
font-size: 20px;
font-weight: bold;
color: #333;
margin: 0;
flex: 1;
}
.sticky-info-box-close {
background: none;
border: none;
font-size: 24px;
color: #999;
cursor: pointer;
padding: 0;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.2s ease;
}
.sticky-info-box-close:hover {
color: #333;
}
.sticky-info-box-message {
flex: 1;
color: #666;
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
overflow-y: auto;
}
.sticky-info-box-button {
background: #0073aa;
color: white;
border: none;
padding: 12px 24px;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
text-decoration: none;
display: inline-block;
text-align: center;
transition: background 0.2s ease;
}
.sticky-info-box-button:hover {
background: #005a87;
}
.sticky-info-toggle {
position: fixed;
bottom: 120px;
right: 50px;
width: 50px;
height: 50px;
background: #0073aa;
color: white;
border: none;
border-radius: 50%;
font-size: 24px;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
z-index: 9998;
display: none;
align-items: center;
justify-content: center;
transition: background 0.2s ease;
}
.sticky-info-toggle:hover {
background: #005a87;
}
.sticky-info-toggle.visible {
display: flex;
}
</style>
<div class="sticky-info-box" id="stickyInfoBox">
<div class="sticky-info-box-header">
<h3 class="sticky-info-box-title">Important Information</h3>
<button class="sticky-info-box-close" id="closeInfoBox" aria-label="Close">×</button>
</div>
<div class="sticky-info-box-message">
<p>This is your information box! You can customize this message to display any content you'd like to share with your visitors.</p>
</div>
<a href="/your-page-url" class="sticky-info-box-button">Learn More</a>
</div>
<button class="sticky-info-toggle" id="infoToggle" aria-label="Show information">ℹ</button>
<script>
(function() {
var infoBox = document.getElementById('stickyInfoBox');
var closeBtn = document.getElementById('closeInfoBox');
var toggleBtn = document.getElementById('infoToggle');
// Close the info box
closeBtn.addEventListener('click', function() {
infoBox.classList.add('hidden');
toggleBtn.classList.add('visible');
});
// Show the info box again
toggleBtn.addEventListener('click', function() {
infoBox.classList.remove('hidden');
toggleBtn.classList.remove('visible');
});
})();
</script>
<?php
}
add_action('wp_footer', 'add_sticky_info_box');
Then adjust the title, message, buttone text & link to suit. You can also adjust the CSS to change colors, etc.
It places the box & info button 120px from the bottom so they are above the scroll-top button, ratio than have them move if the scroll-top shows, which would not be so good.


Best regards,
Mike
have a look if you have already the svg usage of those standard icons. – the up-open icon is already a bold one – but you can make it bigger:
#scroll-top-link svg {
margin-top: 3px !important;
width: 40px !important;
height: 40px !important;
}
#scroll-top-link svg path {
stroke-width: 2;
stroke: currentColor
}
see :

btw: on mobile ( better on smaller screens it is set to display: none )
@media only screen and (max-width: 767px) {
.responsive #scroll-top-link {
display: block;
}
}
The reason for this is that many people know that double-tapping the top of the screen scrolls the window upwards.
Dear Support.
Can you recommend a solution or PlugIn to create a feature similar to this website: https://immosell.ch/
Also once the box is closed there is an information Icon that can bring the box back. Also on my page I am using your scroll to the top icon which I would like to keep under the box if the box is showing and next to the Information icon once the box is closed.
Thanks for advise.
Regards
Stefan
Dear Support.
I duplicated a color section and used one version for laptop and one for mobile. It works really well. The only problem is that the ID for each section is the same. There is one ID used in two color sections, otherwise I would not know how to adress the section in the menue.
The result is that the link works on desktop but not on mobile. Is there a solution for this?
Regards
Stefan
Hi,
When I last used Enfold, there was a “Preview” button that would show you the page after you’d made changes in the editor. Now, I can only find an arrow at the top that will open the page, but unless I save the changes, they don’t appear there. I need a way to preview changes before making them permanent with a Save. Suggestions?
Also, next to the Copyright statement, I’d like to remove the text: powered by Enfold WordPress Theme. How can I do that?
Thanks.
Hi,
Thank you for the link.
Add this code in the functions.php file to load the Cairo font:
function av_load_google_fonts() {
wp_enqueue_style(
'google-fonts-cairo',
'https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap',
array(),
null
);
}
add_action('wp_enqueue_scripts', 'av_load_google_fonts');
After that, add the following css to make the font the default body text:
#top, body, p, span, li, a, h1, h2, h3, h4, h5, h6, input, textarea, button {
font-family: 'Cairo', sans-serif;
}
Let us know the result.
Best regards,
Ismael
Hey ti2media,
Thank you for the inquiry.
The color of the email field is different due to this css code:
#top .kontaktformular input[type='text'] {
background-color: #ffffff !important;
border: none !important;
color: #0d3c63 !important;
}
To correct it, please replace it with the following css:
#top .kontaktformular input[type='text'], #top .kontaktformular input[type='email'] {
background-color: #ffffff !important;
border: none !important;
color: #0d3c63 !important;
}
Then add this css code to adjust the width of the form fields:
#top fieldset {
margin-bottom: 20px;
overflow: hidden;
}
Best regards,
Ismael
Dear Sirs,
I have disabled the arrows on the navigation of the lightbox using the suggested css but I notice when I click on the image it still scrolls across. Is there any way we can stop this so we disable the scroll when someone clicks on the image please.
Many thanks
Peter
Hey ti2media,
Please try this CSS as well:
#scroll-top-link.avia-svg-icon svg:first-child {
margin-top: 7px;
}
Best regards,
Rikard
Dear Support,
I tried to change the “Scroll to the Top” Element using some threads in this Forum. I wanted to achieve that the arrow inside the box is more bold and that the element itself is a little bigger. Doing that the arrow is not centered anymore. Also the element for some reason gets cut when scrolling on an iPhone. It’s only visible on mobile once you scroll up. It should always be visible. Please advise.
-
This topic was modified 1 month, 3 weeks ago by
ti2media.
Hey jimmiemoreland,
Thank you for the inquiry.
You can add this css code to make the header sticky on mobile. Make sure to adjust the top padding based on the header’s height.
@media only screen and (max-width: 989px) {
/* Add your Mobile Styles here */
.responsive.html_mobile_menu_tablet #top #wrap_all #header {
position: fixed;
}
.responsive.html_header_top #top #main {
padding-top: 120px !important;
margin: 0;
}
}
Let us know the result.
Best regards,
Ismael
Hi,
Thank you for the update.
Try to add this css code to show the full image:
#top .fullsize .template-blog .big-preview img {
min-width: 300px;
background-size: contain;
}

Best regards,
Ismael
Hello, Id like the Sticky Header on MOBILE as I want my Phone number always displayed at the top when a user scrolls. I found the code below, but it doesnt do anything.
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .main_menu {
position: relative;
width: 100%;
}
}
I need the same to happen on disktop
try:
.responsive #top #section-container-width .container {
width: 100% !important;
max-width: 100% !important;
padding: 0;
}
.responsive #top #section-container-width .avia-image-diff-container {
margin: 0 !important;
}
.responsive #top #section-container-width .av-image-diff-wrapper,
.responsive #top #section-container-width .av-image-diff-wrapper img {
width: 100%;
max-width: 100% !important;
margin: 0
}
your images are 1024px width – so you had to stretch them to the container width.
Rikard,
The menu on mobile view change automatically to be logo on the right and language switcher on the left. But on disk top logo on Arabic language stays on the lift and language switcher on the right. It should automatically to Logo on the right and language switcher on the left.
I didnt find any place in the theme settings to change this.
please support.
Thanks.