Forum Replies Created
-
AuthorPosts
-
Hey rixi,
Thank you for the inquiry.
The button seems to be displaying correctly when we checked. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages, or Dropbox to upload and share the screenshot.
Hey rixi,
Thank you for the inquiry.
The changes are being overridden by the H4 style configuration in the Advanced Styling panel. You may need to remove that configuration or add the following code to the Quick CSS field.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top #wrap_all .avia-timeline-container.av-meoc0fve-0ab7d904c4d6448157070948d8d30f71 .av-milestone-title { font-size: 20px; } }Best regards,
IsmaelSeptember 18, 2025 at 5:25 am in reply to: Moving all CSS customizations from “Quick CSS” to “style.css” file #1489338Hey Angelo,
Thank you for the inquiry.
Yes, you can safely move the code from the Quick CSS field to the child theme’s style.css file, just make sure all css rules are valid. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure the changes take effect.
Best regards,
IsmaelHi,
No problem! Please don’t hesitate to open another thread if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
We replaced the Text layer with HTML and adjusted the content slightly to break it into multiple lines. You can now try adjusting the styling, and once you’re done, snap it back to vertical and horizontal alignment.
Best regards,
IsmaelHi,
Thank you for the update.
We’re not seeing any errors or messages in the browser console, so it’s unclear whether the script is running at all. We recommend reaching out to the plugin or script developers to confirm if this is the correct embed code.
Best regards,
IsmaelSeptember 18, 2025 at 4:44 am in reply to: javascript error – Syntax Error, unexpected $eof #1489334Hi,
Thank you for the inquiry.
There is invalid code in the snippet. Please remove it and replace it with the following code:
//——————————- // Toggle section //——————————- function toggle_on_click() { ?> <script> jQuery(window).on('load', function() { // Button onClick event jQuery(".toggle-button a").on("click", function(e) { // Add your button events here console.log("Toggle section"); jQuery("#toggle-section").toggleClass("hide-me"); console.log("Prevent default"); e.preventDefault(); }); }); </script> <?php } add_action('wp_footer', 'toggle_on_click');Best regards,
IsmaelHey Julien,
Thank you for the inquiry.
The lightbox will only be applied to images that are wrapped in an anchor tag linking to their own file. To enable this for gallery images, make sure that each image item in the gallery is set to “Link to image file”, as shown in the screenshot below.
Best regards,
IsmaelSeptember 18, 2025 at 4:22 am in reply to: Advanced Styling Not Saving on Child Theme on Staging Site #1489331Hi,
why does my Home page look good on desktop, but loses those settings on smaller screens and mobile?
The issue occurred because a css media query in the Quick CSS field was not closed properly. We have corrected the css code. Please make sure to purge the cache before testing the page.
Best regards,
IsmaelHi,
No problem! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi!
If you need to adjust the color of the search icon as well, include the following css code.
#top #header .av-main-nav > li > a > svg:first-child, #top #wrap_all .header_color .cart_dropdown_first .cart_dropdown_link.avia-svg-icon svg:first-child { fill: #006ab5; stroke: #006ab5; }Best regards,
IsmaelHi,
Thank you for the info.
You can try this css code to adjust the height of the slider on smaller screens.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner { height: 80vh !important; } #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner li, #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner li div, #top #wrap_all .av-k5zwtv35-b503e223437d26141b6108faf533b96b .avia-slideshow-inner li div img { height: 100%; object-fit: cover; } }Result:
Best regards,
IsmaelSeptember 17, 2025 at 5:02 am in reply to: Advanced Styling Not Saving on Child Theme on Staging Site #1489294Hi,
Thank you for the update.
It seems to be working correctly in the staging site. We set the button border radius from 20px to 30px.
Please make sure to purge the cache before checking the page. It’s also recommended to temporarily disable file compression settings while editing the site.
We also created a test page. (see private field)
Best regards,
IsmaelHey Darren Harlow,
Thank you for the inquiry.
You will need the purchase code or access to the account where the license is registered. Since the installation contains a very old version of the theme, you’ll need to download the latest version (7.1.2) from your ThemeForest account and update the theme manually via FTP. Please check this documentation for more info.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Once the theme is updated to the latest version, you’ll be able to upgrade it automatically from the dashboard. To enable this, you’ll need to register a private token: https://kriesi.at/documentation/enfold/theme-registration/#register-my-theme
We recommend creating a site backup or cloning the site to a different domain, perform the update there, fix any issues before transferring it to the live site.
Let us know if you need more info.
Best regards,
IsmaelHey Stefan,
Thank you for the inquiry.
You can enable the Enfold > Performance > Delete old CSS and JS files? option to automatically delete these files. This option is located at the very bottom of the Performance panel. If the files persist, you can manually delete them (make sure to create a backup first), then resave the theme options to regenerate the dynamic scripts and stylesheets.
You can also disable the file compression settings in Enfold and instead enable the compression option in your caching plugin, or install a dedicated optimization plugin such as Autoptimize or BWP Minify.
Hope this helps.
Best regards,
IsmaelHey bemodesign,
Thank you for the inquiry.
We may need to view the site to properly inspect the issue. Please create a test page, then provide the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Try to add this code to the functions.php file to sort items on the blog page by modified date and on the songs page by published date:
function ava_pre_get_posts_mod($query) { if (!is_admin() && $query->is_main_query()) { if (is_page(1230)) { $query->set('orderby', 'date'); $query->set('order', 'DESC'); } if (is_page(574)) { $query->set('orderby', 'modified'); $query->set('order', 'ASC'); } } } add_action('pre_get_posts', 'ava_pre_get_posts_mod');Best regards,
IsmaelHi,
Thank you for the update.
Have you tried adding titles to the images in Media > Library? Looks like you’re using a third-party slider plugin to display the images. For additional info, please reach out to the plugin developers.
Best regards,
IsmaelHey SikoraEDV,
Thank you for the inquiry.
We may need to inspect the page to properly check the issue. Please create a test page with the embed code or widget, then provide the site URL in the private field.
Best regards,
IsmaelSeptember 16, 2025 at 4:51 am in reply to: Advanced Styling Not Saving on Child Theme on Staging Site #1489265Hey classywebsites,
Thank you for the inquiry.
The changes made to Advanced Styling seem to be working correctly. We configured the H1 element in the Advanced Styling panel and created a test page using the Special Heading element. We also temporarily disabled the file compression settings. Please check the private field.
Best regards,
IsmaelHi,
You’re quite welcome! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey koomo,
Thank you for the inquiry.
Please add this css code to adjust the position of the overlay inside the carousel.
.swiper-slide span.image-overlay.overlay-type-image { left: 0 !important; top: 0 !important; }Best regards,
IsmaelHi,
Thank you for the inquiry.
Try to add this css code to adjust the spacing around the timeline container:
.avia-timeline-container { position: relative; padding: 0 10px; }Let us know the result.
Best regards,
IsmaelHi,
For the follow-up inquiries, please continue here: https://kriesi.at/support/topic/color-setting-logo-area-heading/
Best regards,
IsmaelHey schub1981,
Thank you for the inquiry.
We may need to inspect the elements on your site in order to provide an appropriate solution. Please provide the site URL in the private field. Have you tried adjusting the color options in the Enfold > General Styling > Logo Area tab?
In the meantime, to adjust the color of the burger menu icon on mobile view, try to use the following css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #da2727; } .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after { background-color: #da2727; } }Best regards,
Ismael -
AuthorPosts







