Forum Replies Created

Viewing 30 posts - 1 through 30 (of 66,441 total)
  • Author
    Posts
  • in reply to: Color setting (“Construction” demo) #1489180

    Hi,

    For the follow-up inquiries, please continue here: https://kriesi.at/support/topic/color-setting-logo-area-heading/

    Best regards,
    Ismael

    in reply to: Color setting Logo Area Heading #1489179

    Hey 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

    in reply to: Add Trip Advisor to Social Profiles #1489178

    Hi,

    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,
    Ismael

    in reply to: Margins for masonry grid loading delay on mobile #1489177

    Hi,

    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.

    www-maartenwebsites-nl-dev-regenboog-agenda-i-Pad-Air

    Best regards,
    Ismael

    in reply to: Angled areas in the “Creative” one page demo theme #1489176

    Hey 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,
    Ismael

    in reply to: portfolio image sizing #1489175

    Hey 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,
    Ismael

    in reply to: name visible on .scroll-down-link #1489155

    Hi,

    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,
    Ismael

    in reply to: Website soft brick #1489151

    Hi,

    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,
    Ismael

    in reply to: No Logo in Header and a title instead #1489149

    Hi,

    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.

    https://concepts.app/en/

    You can also try Affinity Photo or Pixelmator.

    Hope that helps.

    Best regards,
    Ismael

    in reply to: Add Trip Advisor to Social Profiles #1489148

    Hi,

    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.

    Screenshot-2025-09-11-at-10-31-50-AM
    image host
    Best regards,
    Ismael

    in reply to: Sticky menu on mobile for one-page website #1489117

    Hi,

    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,
    Ismael

    in reply to: Sorting Posts Differently on Different Pages #1489079

    Hey 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,
    Ismael

    in reply to: name visible on .scroll-down-link #1489078

    Hi!

    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,
    Ismael

    in reply to: Page speed using section color overlay #1489077

    Hi,

    Good to know! Please don’t hesitate to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Sidebar settings #1489076

    Hey 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,
    Ismael

    in reply to: Header #1489075

    Hey ericsauthier,

    Thank you for the inquiry.

    Looks like you have managed to set the menu to display below the logo. To enable the sticky header, we enabled the Sticky Header option in the Enfold > Header > Header Behavior panel.

    Screenshot-2025-09-09-at-11-49-15-AM

    Best regards,
    Ismael

    in reply to: Post preview image display issue #1489074

    Hi,

    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,
    Ismael

    in reply to: LayerSlider is giving me an error on my website #1489073

    Hey 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,
    Ismael

    in reply to: Enfold running very slow in backend #1489044

    Hey 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,
    Ismael

    in reply to: Page speed using section color overlay #1489043

    Hi,

    Looks like the .js css rule is being added by an SVG image named “Plattform_Service” or “Plattform_Microservice”. Try removing the image, then reload the page and let us know the result.

    Screenshot-2025-09-08-at-12-19-48-PM

    Screenshot-2025-09-08-at-12-20-29-PM

    Best regards,
    Ismael

    in reply to: Post preview image display issue #1489042

    Hi,

    Thank you for the info.

    We adjusted the css in the Quick CSS field. Please make sure to purge the cache before checking the page.

    Screenshot-2025-09-08-at-12-12-35-PM

    Best regards,
    Ismael

    in reply to: Website wird ohne CSS-Stylesheet-Formatierung angezeigt #1489041

    Hey 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,
    Ismael

    in reply to: border and form customization #1489040

    Hey 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,
    Ismael

    in reply to: Enfold updates #1489039

    Hi,

    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,
    Ismael

    in reply to: Events Calendar Pro breaks event countdown block #1488974

    Hey 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,
    Ismael

    in reply to: Slide over Effekt is not shown on ipad and handy #1488973

    Hi,

    You’re welcome! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: portfolio-grid menu images #1488972

    Hi,

    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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Color section aligned to the center of its content #1488969

    Hi,

    Great! Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Page speed using section color overlay #1488968

    Hi,

    We are not entirely sure which plugin is adding the css code because it’s being added internally. Try to disable all plugins temporarily, then activate them one at a time to figure out which one is generating the css.

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 66,441 total)