Forum Replies Created
-
AuthorPosts
-
Hi,
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,
IsmaelHi,
You’re quite welcome! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelSeptember 12, 2025 at 5:23 am in reply to: Margins for masonry grid loading delay on mobile #1489177Hi,
Thank you for the inquiry.
The masonry element seems to be loading correctly on our end. 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.
Best regards,
IsmaelSeptember 12, 2025 at 5:15 am in reply to: Angled areas in the “Creative” one page demo theme #1489176Hey ckrizman,
Thank you for the inquiry.
There is no built-in option for this by default, but you can adjust the svg divider position using css. For example, you can use the following code to move the top divider 50px upward and the bottom divider 100px downward:
.avia_transform .av-extra-border-element.border-extra-diagonal { height: 250px; margin-top: -100px; } .avia-divider-svg.avia-divider-svg-tilt.avia-divider-svg-top.avia-flipped-svg.avia-to-front.avia-svg-original { margin-top: -50px; }
Best regards,
IsmaelHey dweddell,
Thank you for the inquiry.
The image displayed in the grid items is actually 495x400px, but the items must be resized based on the container’s maximum width, which also affects the rendered size of the images.
For single portfolio pages, try to add the following code to the functions.php file to use the original (full-size) version of the portfolio featured image:
add_action( 'init', 'ava_set_image_size_for_single_portfolio' ); function ava_set_image_size_for_single_portfolio() { if ( is_singular( 'portfolio' ) ) { global $avia_config; $avia_config['size'] = 'full'; } }
Best regards,
IsmaelHi,
Thank you for the update.
Try to add this code to the functions.php file to include a < title > element inside the scroll-down svg image.
add_action( 'wp_footer', 'ava_script_mod', 9999 ); function ava_script_mod() { ?> <script type="text/javascript"> jQuery(document).ready(function($) { $('.scroll-down-link svg').each(function () { $(this).find('title').remove(); $(this).prepend('<title>Scroll down</title>'); }); }); </script> <?php }
Let us know the result.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Most of the color styling options are located under Enfold > General Styling. You can check the preview to see which element a specific field controls. If you can’t find the correct setting there, you can also edit the element in the Advanced Layout Builder and adjust the color options in the Styling tab.
To adjust the color of the phone number, please add this code in the Quick CSS field:
#top .header_color .phone-info a { color: #ffffff; }
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
We’re not that familiar with iPad or iOS apps, but the following application seems to be a good choice that includes vector editing.
You can also try Affinity Photo or Pixelmator.
Hope that helps.
Best regards,
IsmaelHi,
Thank you for the update.
We modified the avf_social_icons_options filter a bit and moved it around line 64 of the functions.php file. We also added the social icon in the Enfold > Social Profiles panel. Please make sure to purge the cache before checking the page.
image host
Best regards,
IsmaelHi,
Great! Glad to know that you’ve managed to sort this one out. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey tonyska,
Thank you for the inquiry.
Which blog layout (Grid, Small, Multi-author, List etc.) did you select? If it’s set to Grid Layout, you should be able to use the avia_post_slide_query filter to adjust the sorting of the items and utilize conditional functions to apply different sorting for specific pages or templates.
Example:
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod'); function avia_post_slide_query_mod($query) { if (is_page(123)) { $query['orderby'] = 'menu_order'; $query['order'] = 'ASC'; } elseif (is_home()) { $query['orderby'] = 'date'; $query['order'] = 'DESC'; } return $query; }
Replace 123 with the actual ID of the song page.
Each song is a blog post, and I organized them on my songs page by posting excerpts in order.
How do you post excerpts in a specific order?
Best regards,
IsmaelHi!
Thank you for the inquiry.
Looks like the report is referring to the scroll-down link. Please create a test page and provide the link in the private field so we can check the slider element further — screenshots will also help.
Best regards,
IsmaelHi,
Good to know! Please don’t hesitate to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Julie,
Thanky you for the inquiry.
Did you add this css code?
main { display: block; margin: 0 auto; max-width: 40rem; padding: 1rem; }
This limits the width of the content to 40rem. Please try to remove the css code, then toggle or temporarily disable the Enfold > Performance > File Compression settings.
Let us know the result.
Best regards,
IsmaelHi,
Great! The css code looks correct and valid. Please feel free to open another thread if you have any more questions.
Have a nice day.
Best regards,
IsmaelHey Jacob,
Thank you for the inquiry.
These are only notices and warnings, so they shouldn’t affect the site in any way. You can hide them by editing the wp-config.php file and setting WP_DEBUG and WP_DEBUG_DISPLAY to false. Please check the documentation below for more info.
— https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
Best regards,
IsmaelHey Mapod,
Thank you for the inquiry.
What are the actual specifications of your server (RAM, CPU)? Please post the login details in the private field so we can investigate the issue further. In the meantime, try to switch to PHP 8.1, and enable the error logs in the wp-config.php file to see if it catches any errors.
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );
Best regards,
IsmaelSeptember 8, 2025 at 6:07 am in reply to: Website wird ohne CSS-Stylesheet-Formatierung angezeigt #1489041Hey uteba,
Thank you for the inquiry.
The default compression from the theme should not cause this issue, but try to disable it temporarily, then enable the compression and merging options in your caching plugin and observe whether the issue still occurs randomly. Do you update or modify the theme options from time to time?
Best regards,
IsmaelHey Gianluca,
Thank you for the inquiry.
You can use this css code to adjust the border of the input fields inside the form and decrease the space between the checkboxes.
#top div .av-light-form .input-text, #top div .av-light-form input[type=email], #top div .av-light-form input[type=input], #top div .av-light-form input[type=number], #top div .av-light-form input[type=password], #top div .av-light-form input[type=search], #top div .av-light-form input[type=tel], #top div .av-light-form input[type=text], #top div .av-light-form input[type=url], #top div .av-light-form select, #top div .av-light-form textarea, div div .av-light-form .button { color: #fff; border-color: #fff; border-width: 1px!important; } #top .avia-builder-el-25 #avia_7_1 p { margin-bottom: 10px; display: block; height: 40px; float: none; } #top .avia-builder-el-25 .avia_ajax_form .element_avia_8_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_9_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_10_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_11_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_12_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_13_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_8_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_9_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_10_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_11_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_12_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_13_1 input[type=checkbox] { top: -20px; position: relative; margin-bottom: 0; } #top .avia-builder-el-25 input.button { top: -20px; position: relative; }
Best regards,
IsmaelHi,
Thank you for the update.
In the current version (5.2.1) installed on your site, you may need to download the latest version of the theme from your ThemeForest account and upload it manually to your server via FTP. Once the theme is updated to version 7.1.2, you should be able to update it again directly from the dashboard. Please refer to this documentation for more information.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey dpcram,
Thank you for opening another thread.
As mentioned previously, we may need to log in to the site to properly check the issue. Please create a test account and provide the login details in the private field. We also recommend reaching out to the plugin developers for additional assistance.
Best regards,
IsmaelHi,
You’re welcome! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The SVG file you provided above is not accessible on our end, so the issue is likely related to your server or WordPress installation. Please try to install the following plugin and let us know the result.
— https://wordpress.org/plugins/svg-support/
Best regards,
IsmaelSeptember 5, 2025 at 7:18 am in reply to: Enfold and Paid Membership Pro – any successful integrations? Issues? #1488970Hi,
Thank you for the inquiry.
The Advanced Layout Builder that comes with the theme is completely different from the default Block Editor, so they are not compatible with each other. If the plugin provides shortcodes to create forms, you can insert them in a Text or Code Block element in the builder. Otherwise, you’ll need to continue using the Block Editor. We recommend reaching out to the plugin developers for further assistance.
Best regards,
IsmaelSeptember 5, 2025 at 7:13 am in reply to: Color section aligned to the center of its content #1488969Hi,
Great! Please don’t hesitate to open another thread if you have more questions. Have a nice day.
Best regards,
Ismael -
AuthorPosts