Forum Replies Created

Viewing 30 posts - 6,331 through 6,360 (of 67,597 total)
  • Author
    Posts
  • in reply to: Is Enfold compatible with Rank Match SEO And AI plugin? #1432332

    Hey!

    Thank you for the info.

    When it comes to editors, Enfold and Rank Math, the only possible conflict we can think of will be related to the Content Analysis where Rank Math may not be able to read the content.

    As we have said earlier, the theme’s Advance Layout Builder is compatible with the plugin’s content analysis, so the plugin should be able to read or detect elements added the builder. If you define a Rankmath focus keyword in a page or post, and added that keyword in a Special Heading or Text Block element, the analysis will be able to detect it and update the analysis accordingly. You can test it out.

    Regards,
    Ismael

    in reply to: Avia Layout Architect not loading on page for latest posts #1432115

    Hi,

    Thank you for the update, and sorry to hear about your illness. Hope you’re feeling better now.

    We are not yet sure what is causing the errors, but it might be due to the content added in the page. Did you add any custom scripts or html tags in the “Reisebilder & Berichte” page? Please set the builder to debug mode so that we can see the builder content or shortcodes.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Small bar above Main Menu – font and icon size #1432112

    Hi,

    Thank you for the inquiry.

    The css rule for the phone number should have the selector “phone-info” and “social_bookmarks” for the social icons. To hide the duplicate social icons in the main header container, please edit the last css code that we provided above and replace it with the following.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header_meta .social_bookmarks {
        display: block;
      }
    }
    

    Best regards,
    Ismael

    in reply to: customer reviews – align the text at the top #1432111

    Hi,

    Did you toggle the html and file compression? Please add the css code below, then disable the cache and compression plugin temporarily before checking the page.

    #kundenempfehlungen {
        overflow: visible !important;
        margin-bottom: 100px;
    }
    

    Best regards,
    Ismael

    in reply to: Problem on show social icons in mobile header #1432108

    Hi,

    The latest code should be placed inside the css media query. Please remove all css code related to this thread, then replace it with the following code.

    
    @media only screen and (max-width: 767px) {
    
      #header_meta .container {
        display: flex;
        justify-content: flex-start;
      }
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header .social_bookmarks,
      .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
        text-align: left;
        width: auto;
      }
    
      .responsive #header .sub_menu,
      .responsive #header_meta .sub_menu>ul {
        float: none;
        width: auto;
        text-align: center;
        margin: 0 auto;
        position: static;
        margin: 0;
      }
    
      .responsive #top #wrap_all #header_main .social_bookmarks {
        display: none;
      }
    }

    This should remove the duplicate social bookmarks container and position the icons beside the language flags in the far-left corner of the header meta container.

    Best regards,
    Ismael

    in reply to: Is Enfold compatible with Rank Match SEO And AI plugin? #1432107

    Hey Peter,

    Thank you for the inquiry.

    The theme is compatible with the Rankmath plugin, and the Advanced Layout Builder (ALB) should also work with the plugin’s content analysis. Unfortunately, we haven’t tested the builder with the Content AI feature, but you should be able to use the plugin with the theme without issue.

    Best regards,
    Ismael

    in reply to: Grid Row Mobile + tablet view #1432105

    Hi,

    Thank you for the inquiry.

    But problem 2 with the wide spacing still exists: Could you still help me with this?

    We are not sure where the space is coming from, but you can decrease it by adding this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #gutschein {
        margin-bottom: -100px;
      }
    }

    Best regards,
    Ismael

    in reply to: Label for post types creating a link in Avia Builder #1432104

    Hi,

    Thank you for the info.

    We may need to access in order to properly check the issue. Please provide the WP and S/FTP login details in the private field.

    Best regards,
    Ismael

    in reply to: Masonry no entries fallback #1432103

    Hi,

    Desired situation: When no categories are selected the masonry element has 0 results. When a new post is added in a new category, it shows 1 post.

    That is not possible, unfortunately. You either have to select a category or select none at all to display all posts from all categories. The filter avf_masonry_query_no_entries_fallback when set to false will prevent fallback posts from displaying when there are no items in the selected category.

    Best regards,
    Ismael

    in reply to: Masonery gallery #1432102

    Hi,

    Thank you for the update.

    You can apply a custom css class name or ID attribute to the Masonry element and adjust the css rule accordingly. Please check the link below.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    in reply to: Video Media Element not showing video #1432101

    Hi,

    Thank you for the update.

    Could you provide links to the demo pages you’d like to copy? We should be able to provide you with the builder shortcodes, which can be manually applied to your pages. You have to set the builder to debug mode first.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    It’s not possible to add buttons to the Easy Slider element by default, but you should be able to manually create the buttons using html and add them to the sliders’ caption fields.

    HTML:

    
    <div class="av-button av-slide-button av-size-sm">Make an Appointment</div>
    

    CSS:

    .av-slide-button {
        text-transform: uppercase;
        letter-spacing: 1px;
        border-width: 1px;
        color: #fff;
        background-color: #006f49;
        border-color: #fff;
        display: inline-block;
        line-height: 1;
        font-size: 15px;
        padding: 12px 24px;
        border-radius: 3px;
        color: #fff;
        fill: #fff;
        text-align: center;
        transition: all .3s;
    }
    

    Best regards,
    Ismael

    in reply to: Suggestion for content element: “Cards” #1432099

    Hey gatehealing,

    Thank you for the inquiry.

    Have you tried creating a Custom Element Template for this instead of adding another element? Please check the link below for more info. In the upcoming version of the theme, there will also be Custom Layout and Dynamic Content features, which can be used to create custom layouts and content pulled directly from the database or custom fields.

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    in reply to: Image resizing for mobile #1431971

    Hey sarawh,

    Thank you for the inquiry.

    Which image element are you using? If you’re using the default Image element from the builder, the element should include the srcset attribute which is added by WordPress automatically, and the browser should automatically select or serve the appropriate thumbnail size for different screen sizes. This should also work for sliders if you select the original or full-size thumbnail. If you want to learn more about the srcset attribute, please check the link below.

    // https://developer.wordpress.org/apis/responsive-images/

    Best regards,
    Ismael

    Hey ebenanders,

    Thank you for the inquiry.

    Did you add any css modifications in the Quick CSS field or in the child theme’s style.css file? Please provide the site URL in the private field and post a screenshot of the issue. You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Slider Caption Help #1431969

    Hi,

    Thank you for the update.

    Have you tried editing one of the slider items? The options mentioned above can be configured for specific slider items.

    Best regards,
    Ismael

    in reply to: Small bar above Main Menu – font and icon size #1431968

    Hey xfacta,

    Thank you for the inquiry.

    You can use the following css code to adjust the style of the elements inside the header meta or the small bar above the main menu.

    #top #header_meta a, #top #header_meta li, #top #header_meta .phone-info {
        text-transform: uppercase;
        letter-spacing: 0.02em;
        font-weight: 300;
        text-decoration: none !important;
    }
    
    #header_meta .sub_menu {
        float: left;
        z-index: 2;
        font-size: 1.2em;
        line-height: 30px;
        position: relative;
        top: 10px;
    }
    
    #header_meta .phone-info {
        float: left;
        font-weight: bold;
        line-height: 20px;
        font-size: 1.2em;
        padding: 5px 0;
    }
    

    And to re-enable the social bookmarks on mobile view, you can include this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header .social_bookmarks,
      .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
      }
    }

    Best regards,
    Ismael

    in reply to: The flag of languages not appear in phone burger menu. #1431967

    Hey Antonio,

    Thank you for the inquiry.

    The language flags should be displayed inside the burger menu overlay, positioned below the burger menu items. Please open the burger menu, and you should find the language flags within the menu overlay.

    Best regards,
    Ismael

    in reply to: Sidebar navigation onto a full-width page. #1431966

    Hey TBant,

    Thank you for the inquiry.

    You can create a custom shortcode for the Page Sidebar Navigation and add it to your fullwidth pages using a Text or Code Block element. Please add this code in the functions.php file.

    function avs_sidebar_menu_cb( $atts ){
    	return avia_sidebar_menu($echo = true);
    }
    add_shortcode( 'avs_sidebar_menu', 'avs_sidebar_menu_cb' );
    

    You can then use the following shortcode in the builder.

    [avs_sidebar_menu]
    

    Best regards,
    Ismael

    in reply to: Avia Video Gradient Overlay #1431965

    Hi,

    Awesome! Glad to know that @Guenni007 was able to help you out. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that this has been resolved. Please let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hey gatehealing,

    Thank you for the inquiry.

    We may need to inspect the site in order to provide an appropriate solution. Please provide the site URL in the private field and post a screenshot of the layout issue.

    Best regards,
    Ismael

    in reply to: Problem on show social icons in mobile header #1431961

    Hi,

    Thank you for the update.

    Did you remove the css code? Please add it again, then include the following css rule to hide the duplicate social icons beside the burger menu.

    .responsive #top #header_main .main_menu .social_bookmarks {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Custom Fonts loading very slowly #1431960

    Hi,

    Thank you for the update.

    Unfortunately my questions was centred not around availability of fonts, but how to speed up loading times.

    If you prefer not to switch to a different font with a smaller file size, another option is to upgrade your hosting plan or subscribe to a Content Delivery Network (CDN) to accelerate the delivery of site resources, including fonts. However, we strongly advise considering an alternative font since a 12MB file size is quite large especially for a font file and this can significantly impact website loading times. This may result in slower user experiences, particularly on slower internet connections or mobile devices.

    You can also implement basic site optimization by following the recommendations outlined in the following articles.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: Enfold – Responsive Multi-Purpose Theme #1431959

    Hi,

    Thank you for the update.

    The style of the layers should automatically adjust based on the screen width. If this is not working as intended, you can toggle the layers’ visibility on different screen sizes. Edit the layer, then look for the Toggle Device Visibility in the Layer Settings > Content panel. You can choose to hide a specific layer on mobile devices and display a different element with styles configured for smaller screens.

    Best regards,
    Ismael

    in reply to: Masonery gallery #1431958

    Hey liesbethp1,

    Thank you for the inquiry.

    1.) You can add this css code to adjust the margins around a specific masonry item.

    .av-masonry-container .av-masonry-entry:nth-child(2) {
      margin-top: 200px;
    }
    
    .av-masonry-container .av-masonry-entry:nth-child(4) {
      margin-top: 100px;
    }
    

    The css code above should affect the first and third items in the gallery.

    2.) Have you tried creating a Custom Elements Template for a Masonry Gallery? Please check the link below for more info.

    // https://kriesi.at/documentation/enfold/custom-element-templates/

    Best regards,
    Ismael

    in reply to: tables column widths #1431957

    Hey ausgesonnen,

    Thank you for the inquiry.

    I would like the first column of the table version to be more narrow.

    The width of the table columns automatically adjusts based on the number of columns and the length of the content. If you need to manually adjust the width of the first column, you can add this css code.

    .av-hriqo-df64f73a2229a5a484cc56fae9caca2e table tr th {
        width: 30%;
    }
    

    Best regards,
    Ismael

    in reply to: Meta Title #1431956

    Hi,

    Thank you for the inquiry.

    The clue here might be the comment “page title, displayed in your browser bar” above the title tag. This comment is not anywhere in the theme, and the comment is also not showing on our own installation with Rankmath installed. We also checked the WP core files and didn’t find anything, so it’s possible that the extra title tag is added by a plugin, a hook, filter, or a custom script. Have you tried disabling all plugins temporarily?

    Best regards,
    Ismael

    in reply to: Missing Footer #1431955

    Hey ontariotraining,

    Thank you for the inquiry.

    Did you previously set the Enfold > Footer Options > Default Footer & Socket Settings to Page based Footer options? Please make sure that the Select Page dropdown is set to Select Page to deselect the custom footer page before selecting a non-Page based Footer option. Or provide the login details in the private field so that we can check the settings.

    Best regards,
    Ismael

    in reply to: customer reviews – align the text at the top #1431953

    Hi,

    Thank you for the update.

    You can add this css code to prevent the text from being cut off.

    #kundenempfehlungen {
        overflow: visible;
    }

    Best regards,
    Ismael

Viewing 30 posts - 6,331 through 6,360 (of 67,597 total)