Forum Replies Created

Viewing 30 posts - 1,321 through 1,350 (of 34,894 total)
  • Author
    Posts
  • in reply to: Social media icons missing #1475372

    Hi,
    Thank you for your patience, I checked again but don’t see why the data-av_icon attribute is missing only for the Instagram and YouTube icons.
    I asked Yigit for any other ideas.

    Best regards,
    Mike

    Hi,
    Please also note that I disabled your Disable Gutenberg plugin as this is not needed, the theme already has this setting in the Enfold Theme Options ▸ Select Your Editor option.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, the Dev Team writes that when checking the revisions it seems that the title on your site is causing this, but it is not reproduceable on a local install, this can be ignored or use a plugin to Disable Autosave.
    The only plugin that I found was Disable Gutenberg Autosave, but you are not using Gutenberg so it doesn’t seem to help you. I added this code to your Snippets plugin:

    add_action( 'admin_init', 'disable_autosave' );
    function disable_autosave() {
    wp_deregister_script( 'autosave' );
    }

    and used your WP DB Cleaner plugin to remove past auto saves and saved a page and a post and checked back many times and checked your WP DB Cleaner plugin to see if any was added, but none were.
    Please check.

    Best regards,
    Mike

    in reply to: Burger Menu Position – small screens #1475358

    Hey nancyT,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	.av-burger-menu-main.menu-item-avia-special,
    	.responsive.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown {
    		right: -100px;
    	}
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.
    Screen Shot 2025 01 18 at 3.30.31 PM

    Best regards,
    Mike

    in reply to: footer only on mobile #1475357

    Hey Munford,
    The sidebar is not expected to show on mobile in this layout, nor in the burger menu, but adding this code to the end of your child theme functions.php file in Appearance ▸ Editor will show it:

    function custom_script() { ?>
      <script>
    (function($){
    $('#avia-menu').one('click', function(){
    jQuery('.avia-custom-sidebar-widget-area.sidebar.sidebar_right').clone().wrapInner('<div class="sidebar-widget-area"/>').children(0).unwrap().appendTo('#av-burger-menu-ul');
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Screen Shot 2025 01 18 at 3.16.23 PM

    Best regards,
    Mike

    in reply to: Timeline – Lines missing #1475356

    Hey Diana,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-timeline-container .av-milestone .av-milestone-indicator,
    #top .avia-timeline-container .av-milestone .av-milestone-article-footer {
        background-color: rgba(148, 159, 175, 0.77);
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Change page type to advanced avia builder #1475349

    Hi,
    For pages created with the Advanced Layout Builder, switching to the default WP editor and editing will break the ALB layout.
    If your page has javascript in the iframe code blocks, this may be tring to load when you edit the backend causing the error, or the iframe itself is trying to load in the backend.
    You could try the Avia Layout Builder Debugger to view the page shortcode. But be careful when editing the shortcode directly as it could break the page.

    Best regards,
    Mike

    in reply to: Low Contrast Accessibility Issue #1475348

    Hi,
    When I check the background color is black:
    Screen Shot 2025 01 18 at 8.57.17 AM
    It looks like your tool has an error, changing to transparent probably won’t fix. Try this:

    #center_all .av_custom_color.av-subheading.av-subheading_below p {
    	background-color: #000;
    }

    Best regards,
    Mike

    in reply to: Text Formatting not right #1475347

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .cr-all-reviews-shortcode ol.commentlist li .comment-text .meta .woocommerce-review__author,
    .cr-all-reviews-shortcode ol.commentlist li .comment-text .cr-rating-product-name .cr-product-name-picture .cr-comment-productname-a,
    .cr-histogramTable tr.ivole-histogramRow .cr-histogram-a {
    	color: #fff;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: hide the small slider on mobile #1475346

    Hi,
    To hide it on all pages try this instead:

    @media only screen and (max-width: 767px) { 
    	#revolutionslider_1 {
    		display: none;
    	}
    }

    or for certain pages:

    @media only screen and (max-width: 767px) { 
    	.page-id-3861 #revolutionslider_1,
            .page-ide-3489 #revolutionslider_1 {
    		display: none;
    	}
    }

    Best regards,
    Mike

    in reply to: Product Main image is pixelated and blurry #1475345

    Hi,
    Try this instead:

    #top #wrap_all #main .template-page h1.markdown a,
    #top #wrap_all #main .template-page h2.markdown a,
    #top #wrap_all #main .template-page h3.markdown a,
    #top #wrap_all #main .template-page p.markdown ~ h3 a{
    	 text-decoration: none !important;
    }
    #top #main .template-page .avia_textblock :not(h1,h2,h3) a:not(.avia-button) {
        text-decoration: underline !important;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Accessibility Issues #1475342

    Hi,
    Your screenshot has this structure:
    enfold-child ▸ config-templatebuilder ▸ avia-shortcodes ▸ logoslider ▸ logoslider.php
    Screen Shot 2025 01 18 at 7.58.14 AM
    It should be:
    enfold-child ▸ shortcodes ▸ logoslider ▸ logoslider.php

    Best regards,
    Mike

    in reply to: hide the small slider on mobile #1475339

    Hi,
    You can remove the page ID for your whole site.

    Best regards,
    Mike

    in reply to: hide the small slider on mobile #1475337

    Hi,
    Sorry, I don’t understand, please explain further.

    Best regards,
    Mike

    in reply to: hide the small slider on mobile #1475305

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    	.page-id-3861 #revolutionslider_1 {
    		display: none;
    	}
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Display Custom links in a new window #1475303

    Hey José Augusto,
    Try going to the “screen options” at the top of the menu page and select “Link Target”, then after you add your custom link, open it and change your Link Target for it.

    Best regards,
    Mike

    in reply to: Button “transparent” not clickable #1475302

    Hey hwci,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #services {
    	z-index: 0;
      position: relative;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Add Icon to a colored Menu Button #1475299

    Hi,
    Glad Guenni007 & Ismael could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    I tested by saving your homepage and then viewed the frontend, then went back to the backend and there was no message that a auto draft was saved, as in your opening post and screenshot.
    I’m not sure why you are having this issue.

    Best regards,
    Mike

    in reply to: Ansicht Höhere Auflösung #1475177

    Hey edithfrei,
    When I check your footer I’m not seeing any issues:
    Enfold Support 6580
    Please include a screenshot of what you see and paste the image URL in your post.

    Best regards,
    Mike

    in reply to: Alignment Issues from Padding #1475175

    Hi,
    When I check your two sites I don’t see a difference:
    Enfold Support 6577

    Best regards,
    Mike

    in reply to: distance smaller on mobile #1475174

    Hey schweg33,
    I’m not sure that I see extra white space on mobile:
    Enfold Support 6575
    Please include a screenshot of what you see and paste the image URL in your post.

    Best regards,
    Mike

    in reply to: Vimeo video problems #1475173

    Hey jehi33260,
    The error message “Sorry Because of its privacy settings, this video cannot be played here.” seems to be from Vimeo, please check your Vimeo settings in your Vimeo account.
    Perhaps you have to whitelist the domain.
    Your page also has the error: “Failed to load resource: the server responded with a status of 403 (Forbidden)” from Vimeo, which supports the above believe that you need to check your Vimeo settings in your Vimeo account.

    Best regards,
    Mike

    in reply to: Change color of square in post slider #1475172

    Hi,
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Partner Logo element cutting off logos #1475171

    Hi,
    When I check you have a 1px padding in between the images, you could use this css to remove it:

    #top .avia-logo-element-container .slide-entry {
        padding: 0px;
    }

    change the zero if you want it larger.
    Enfold Support 6571
    Try this css to remove the top and bottom padding:

    .flex_column.av-l3t08rf8-8f5e455205a44c3e3d9068782c55a0f9 {
        padding: 0px 50px 0px 50px;
    }

    Enfold Support 6573

    Best regards,
    Mike

    in reply to: Mobil Ansicht sieht strange aus. #1475169

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Burger menu colour change on mobile with transparent menu #1475168

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, but unfortunately the login is not working now. We are not able to reproduce this on our install and the Dev Team writes that the theme doesn’t alter this behavior. If you are using any plugins that clear the WP database or transients, you could try disabling these for 24 hours and check again, or perhaps it is a server cache or other server setting.

    Best regards,
    Mike

    in reply to: How do I place a photo next to text #1475140

    Hi,
    Thank you for your patience, the test page that you created didin’t look the same so I created a new on linked below, to create a table use this code in the “text” tab of the text element:

    <table>
    <tbody>
    <tr>
    <td>image</td>
    <td>text and button</td>
    </tr>
    </tbody>
    </table>

    then add your image and text and button
    Screen Shot 2025 01 15 at 4.36.40 AM
    To create the button code, cue the shortcode wand in a new post with the Classic Editor
    Screen Shot 2025 01 15 at 4.40.07 AM
    Then it will look like this:
    Screen Shot 2025 01 15 at 4.41.44 AM
    Then you can use css to remove the borders and change the background color if you wish.

    Best regards,
    Mike

    in reply to: too much distance – no idea anymore #1475071

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 1,321 through 1,350 (of 34,894 total)