Forum Replies Created

Viewing 30 posts - 8,701 through 8,730 (of 34,635 total)
  • Author
    Posts
  • in reply to: Bullet list line break #1397556

    Hi,
    Thanks for the login, I commented out your css:

    .iconbox_content_container.smaller-dots-2 ul {
        line-height: 1.4em;
    }
    .smaller-dots-2 ul li::before {
        content: "\2022";
        padding-right: 10px;
        color: #949faf;
    }
    .entry-content-wrapper .smaller-dots-2 li {
        margin-left: 0;
         text-indent: -1.1em;
    }

    and added this css:

    .iconbox_content_container.smaller-dots-2 ul {
        line-height: 1.4em;
    }
    .smaller-dots-2 ul li:before {
        content: "\2022";
        color: #949faf;
        list-style: disc inside;
        float: left;
        position: absolute;
        left: 8px;
    }
    .smaller-dots-2 ul li {
        list-style: none;
        padding-left: 16px;
    }

    Enfold_Support_318.jpeg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Hide Categories on Blog Post Page Builder Element #1397554

    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

    in reply to: column width of the submenu items in the mobile menu #1397553

    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

    in reply to: different font-size in mobile browser #1397552

    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

    in reply to: Multiple custom Social Icons for Header / Footer #1397551

    Hi,
    Glad Nikko was able to 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 – can not klick the main link #1397550

    Hi,
    Thanks for the feedback, but it looks like you have already modified the script to change the second one, I see this on your site now:

    (function($){
        $('.avia_mobile').on('click', '.av-burger-menu-main', function() {
            $('.menu-item-8843 .sub-menu .avia-menu-text:first').text(function(index, text) {
                return text.replace(/(ALLE )?EXKLUSIVMARKEN/, 'ALLE EXKLUSIVMARKEN');
            });
        });
    }(jQuery));

    Best regards,
    Mike

    in reply to: cookie settings blurred #1397549

    Hi,
    Glad we were able to 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: Contact Form #1397518

    Hi,
    Is it a specific setting in the plugin?
    Can you disable different settings to isolate a certain one causing the conflict?
    Try ensuring that the plugin is not forcing jQuery to load in the footer and check that Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is not enabled.
    Unfortunately, we don’t have any experience with this plugin.

    Best regards,
    Mike

    in reply to: Snap Scroll does not work #1397493

    Hi,
    Thanks for the link to your site, I see you are getting this error: Uncaught TypeError: $ is not a function this is because the code you added to the code block is this:

    <script>
        var snapScroll = $(".av-layout-grid-container").SnapScroll({
            hashes: true
        });
        console.log(snapScroll);
    </script>

    the problem is that your script needs to be wrapped like this:

    <script>
    (function($){
        var snapScroll = $(".av-layout-grid-container").SnapScroll({
            hashes: true
        });
        console.log(snapScroll);
    })(jQuery);
    </script>

    this should solve the error, if you are forcing jQuery into your footer try this:

    <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
        var snapScroll = $(".av-layout-grid-container").SnapScroll({
            hashes: true
        });
        console.log(snapScroll);
    })(jQuery);
    });
    </script>

    If this doesn’t correct please include admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    in reply to: cookie settings blurred #1397492

    Hey jeel147,
    Thanks for your question, this font color is set in your Enfold Theme Options ▸ General Styling ▸ Main Content ▸ Main Content font color which is set to #ebebeb which affects many parts of your site, but if you only want to change the font color on your cookie popup you can use this css:

    #top #av-consent-extra-info.main_color .template-archives .tabcontainer a, 
    #top #av-consent-extra-info.main_color .tabcontainer .tab:hover, 
    #top #av-consent-extra-info.main_color .tabcontainer .tab.active_tab,
    #top #av-consent-extra-info.main_color .tabcontainer .tab,
    #top #av-consent-extra-info.main_color div .sidebar_active_tab, 
    #top #av-consent-extra-info.main_color .tabcontainer.noborder_tabs .active_tab_content, 
    #top #av-consent-extra-info.main_color .tabcontainer.noborder_tabs .active_tab,
    #top #av-consent-extra-info.main_color .tab_content strong,
    #top #av-consent-extra-info.main_color h3,
    #top #av-consent-extra-info.main_color a {
        color: #b45d15;
    }

    If you want the background color yellow try this css:

    #top #av-consent-extra-info.main_color,
    #top #av-consent-extra-info.main_color div .sidebar_active_tab, 
    #top #av-consent-extra-info.main_color .tabcontainer.noborder_tabs .active_tab_content, 
    #top #av-consent-extra-info.main_color .tabcontainer.noborder_tabs .active_tab {
    	background-color: yellow;
    }

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

    Best regards,
    Mike

    in reply to: Can’t change the link on Icon Box #1397488

    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: Bullet list line break #1397462

    Hey Diana,
    Try changing your

    .entry-content-wrapper .smaller-dots li {
        margin-left: 0;
        text-indent: 0;
    }

    to

    .entry-content-wrapper .smaller-dots li {
        margin-left: 0;
        text-indent: -1.1em;
    }

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

    Best regards,
    Mike

    in reply to: Style blockquote left border #1397461

    Hey John,
    Thanks for the screenshot, the blockquote width is set with this css:

    blockquote {
        border-left-width: 7px;
    }

    feel free to adjust the color to suit.

    Best regards,
    Mike

    in reply to: Add space below logo #1397457

    Hey Emanon,
    Thank you for the link to your site, please try this css:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
        min-height: 171px;
    }
    .responsive #top .logo.avia-standard-logo {
        min-height: 90px;
    }
    }

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

    Best regards,
    Mike

    in reply to: How to change the default font? #1397456

    Hi,
    Glad Yigit 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: Menu "falsch" dargestellt #1397455

    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

    Hi,
    Glad we were able to 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: Place text next to a logo #1397453

    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: row too high on mobile #1397452

    Hi,
    Glad we were able to 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 – can not klick the main link #1397451

    Hi,
    Thanks for the feedback I tested this function and it seems to work, please include an admin login in the Private Content area so I can test in your site, perhaps the quotes became curly quotes in your functions.php

    function replace_burger_menu_parent_cloned_menu_item_text() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){ 
      $('.avia_mobile').on('click', '.av-burger-menu-main', function() {
      $('.menu-item-8843 .avia-menu-text:first').text(function(index, text) {
        	return text.replace('EXKLUSIVMARKEN', 'ALLE EXKLUSIVMARKEN');
    	});
      });
    }(jQuery));
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'replace_burger_menu_parent_cloned_menu_item_text');

    Best regards,
    Mike

    in reply to: Change background color blog sidebar #1397442

    Hi,
    Glad we were able to 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: How to open a new tab from link in navigation menu #1397441

    Hi,
    Glad we were able to 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: hide featured image #1397440

    Hi,
    Glad we were able to 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: Contact Form #1397381

    Hi,
    Thanks for the login, you are getting the error Uncaught ReferenceError: AviaDatepickerTranslation is not defined typically this occurs when jQuery is loaded after the element call, please try disabling all of your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    If not please leave the plugins disabled so we can check again.

    Best regards,
    Mike

    in reply to: Link will not update #1397378

    Hi,
    Thanks for the login I see that you are using Enfold v3.8.4 with WordPress 6.1.1,
    This version of Enfold doesn’t support this version of WordPress, you will need to update to Enfold v5.4
    When I try to edit the text block which has your link the text doesn’t show, only this: <p><br data-mce-bogus="1"></p>
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    Hey Fred,
    Please include an admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: Link will not update #1397363

    Hey cweber55,
    Please include an admin login in the Private Content area and the link to the correct document so we can check.

    Best regards,
    Mike

    in reply to: Contact Form #1397362

    Hi,
    Please include an admin login in the Private Content area to your test page, on my demo it works out of the box, perhaps there is a conflict on your site?

    Best regards,
    Mike

    in reply to: Pop up is jumping to top of page #1397348

    Hi,
    The TikTok icon is not available on Fontello.com so we can’t add it to the theme yet, please follow this tutorial I have included a TikTok icon that you can download in the tutorial.

    Best regards,
    Mike

    in reply to: hide featured image #1397339

    Hey sitibus,
    Please try using the hide featured image option in the admin sidebar of the post, above the featured image.
    Enfold_Support_316.jpeg
    If you are using the Block Editor, the option is under the Layout tab.

    Best regards,
    Mike

Viewing 30 posts - 8,701 through 8,730 (of 34,635 total)