Forum Replies Created

Viewing 30 posts - 1,381 through 1,410 (of 33,801 total)
  • Author
    Posts
  • in reply to: 2 times drop down menu in left side bar menu #1461531

    Hi,
    Please see this thread that I offered to change sub menu items in sidebar menu to drop down, and from this they are asking to create a second level drop down like in the mobile menu.

    Best regards,
    Mike

    Hey leloux,
    It is because you are using a custom script that I posted for you in another thread.because you wanted a drop down menu, I see now you have created a mega menu, this will not work, so you must disable it.
    Please see the last thread that you opened.
    I recommend removing the script and open a Feature Request for the drop down menu as in your last thread.

    Best regards,
    Mike

    in reply to: Non-uniform layout for multiple paragraphs in tables #1461505

    Hey reqonsult,
    Thank you for the link to your site, this is because the first paragraph is in the “td” and the others are in a “p” which has more specialty.
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .all_colors td p {
        font-size: 13px;
        font-weight: 400;
    }

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

    Best regards,
    Mike

    in reply to: Topics without underlines II #1461504

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

    #top #aufeinenblick .av_textblock_section a {
        text-decoration: none;
    }

    this section is different, for the last solution you were using icons, now you are using h4 text links, I offered the solution to not interfere with other elements.
    If you don’t want any links anywhere to be underlined try this css:

    #top #wrap_all #main a {
        text-decoration: none;
    }

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461502

    Hi,
    Well I don’t know, leloux really wants a sidebar header menu like this:
    Enfold Support 6265
    and this menu doesn’t behave the same as a burger menu, and I have not found a way to do this. If you have an idea how to do this that would be great.
    I don’t understand your example because it doesn’t display like a sidebar header menu, perhap you call the menu in the screenshot something else and I’m not explaining well.

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461499

    Hi,
    That is a good idea Guenni007, but I’m not sure how the burger menu could replace the sidebar header menu, I don’t think that forcing the burger menu to always be open would be the same design. Do you have an idea the replace the menu with the burger menu, maybe like this?

    function av_different_menu( $args = '' ) {
      if($args['theme_location'] === 'avia2') {
          $args['menu'] = '11';
      } 
      return $args;
      }
    add_filter( 'wp_nav_menu_args', 'av_different_menu' );

    Best regards,
    Mike

    in reply to: Cookie information for an accessible website #1461498

    Hi,
    Glad to hear that you are now seeing the cookies, I checked with Windows in Chrome, Firefox, & Edge and the cookies showed in all three after accepting them.
    Please note that if you or your client is using a adblocker it is possible that the cookie button will not show, or will block the cookies completely, some browsers consider this a benefit, and if the user doesn’t click the buttoms the cookies will not be added. We will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Remove space above logo and menue / add a line below #1461496

    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

    Hey clbdcnpafe,
    Thank you for your patience, for your video gallery, when the page is loaded the element has the javascript disabled, typically this is due to a lazyload plugin, please disable your lazyload plugin and then check again. If this helps try reviewing the plugin options as it may have an option to enable the javascript whild the plugin is enabled.
    Please note that the lazyload plugin may be in your JetPack plugin, so also try disabling it.
    I was not able to see your second issue, but this could also be from the lazyload, or a different plugin.
    I see that you have a plugin called wp-gallery-custom-links is this what you are using for the video gallery links?

    Best regards,
    Mike

    Hi,
    Unfortunately I have not found any working solutions for this, but if you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Form – message sent display #1461492

    Hi,
    Thank you for your patience, yry adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function center_the_contact_form_ajax_response_after_the_submit_button_is_clicked() { ?>
      <script>
    document.addEventListener('DOMContentLoaded', function () {
        var buttons = document.querySelectorAll(".button.av-verify-recaptcha-0.av-recaptcha-submit");
    
        buttons.forEach(function(button) {
            button.addEventListener("click", function(event) {
                setTimeout(function() {
                    var resultElement = document.getElementById("result_ajax_response_1");
                    if (resultElement) {
                        resultElement.style.display = 'block'; 
                        var elementRect = resultElement.getBoundingClientRect();
                        var absoluteElementTop = elementRect.top + window.pageYOffset;
                        var middle = absoluteElementTop - (window.innerHeight / 2);
    
                        window.scrollTo({
                            top: middle,
                            behavior: 'smooth'
                        });
                    }
                }, 7000);
            });
        });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'center_the_contact_form_ajax_response_after_the_submit_button_is_clicked', 99 );

    This will center the contact form ajax response after the submit button is clicked, in my tests the time can be between 5 – 7 seconds while the recaptcha checks before the ajax response is shown. Some of this could be because I’m in a different country, so give this a try and adjust the 7000 at the end of the script to 5000 or 6000 to see what works best for you.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Remove space above logo and menue / add a line below #1461491

    Hi,
    It looks like you removed the transparent header from the homepage, so now when you scroll down the header is is transparent and doesn’t become solid white, are you sure this is what you want?
    Earlier the homepage used the transparent header so when you scrolled the header become solid white, I recommend going back to this and then make your other page the same.
    I don’t understand the why you would add the custom classes.

    Best regards,
    Mike

    in reply to: 2 times drop down menu in left side bar menu #1461489

    Hey leloux,
    Thank you for your patience, but I didn’t find a way to achieve this, since this menu structure is not a option in the theme it will more involved.
    If you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests like this and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Custom Fonts #1461488

    Hi,
    Please try disabling the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and any caching plugin that you may be using, then clear your cache a few times and check, If this doesn’t help keep these disabled and include a admin login in the Private Content area so we can examine.
    This seems to only occur in Safari, I also checked with Mac Chrome, Firefox & Windows in Chrome, Firefox, & Edge in which the font error doesn’t occur.
    It looks like the css rules are missing the closing semicolons which many caching plugins will remove and most browsers will self correct, but is this case it looks like Safari is having trouble.

    Best regards,
    Mike

    in reply to: HTML characters broken in accordion title #1461486

    Hi,
    Glad Günter and Guenni007 could help you sort this out, 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

    in reply to: Remove space above logo and menue / add a line below #1461484

    Hi,
    It looks like you are using different layouts for the pages, your homepage has a transparent header, but the other page doesn’t. Please use the same layout for both so they will behave the same. When the transparent header is used the header changes on scroll, your other page will not have this.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Remove space above logo and menue / add a line below #1461480

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

    #header .inner-container {
        border-bottom: 1px solid #000;
    }
    #header_main .inner-container {
        height: 70%;
    }
    #header_main nav.main_menu {
        bottom: 0;
    }
    #main .container_wrap_first .av-special-heading {
    	margin-top: 0;
    }

    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.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    Hi,
    It looks like Günter has answered your question, thank you Günter, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Enfold 6.0 slows down websites #1461478

    Hey Roel,
    Thanks for your question, but I’m not able to reproduce this on my demo site, please try disabling all of your plugins and any custom files such as a custom header.php or footer.php in your child theme, or any customized elements that you have created. If you still find the error please explain how we can reproduce this in a new support thread, because using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.

    Best regards,
    Mike

    Hi,
    Glad Guenni007 could help, thank you Guenni007, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Masonry layout #1461318

    Hi,
    Ok, then just copy the functions.php file and update it after you update the theme each time, in some cases the order of the scripts can make a difference, so perhaps this is why Ismael moved it.
    To me it seems like extra work to copy the file each time you update, if you used the WP Code plugin you would not need to do this, perhaps you will give this a try. If not then just copy the functions.php file and update it after you update the theme each time.

    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

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

    #header_meta.av_extra_header_active > .container {
      display: flex;     
      justify-content: center;
    }
    .phone-info {
    	font-size: 14px;
    }

    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: Masonry layout #1461267

    Hi,
    Ismael made the last change, so he must have felt this was a better location.
    I notice that you are not using a Child Theme, I recommend using one and add all of your customizations to it, otherwise you will lose them the next time that you update the theme.
    If you do not want to use a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    use wpcode php snippet and activate
    and ensure that it is activated, then add your customizations.

    Best regards,
    Mike

    in reply to: Masonry layout #1461263

    Hi,
    The Classic Editor function is in the theme at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor I disabled it to ensure there was not a conflict. If you want to use the plugin feel free to enable it again.

    Best regards,
    Mike

    in reply to: Blog font size #1461262

    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: Blog font size #1461259

    Hey lauragrashoff,
    Thank you for the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field and adjust the font sizes to suit:

    #top.single-post #wrap_all #main .container_wrap_first h1 {
    	font-size: 60px;
    }
    #top.single-post #wrap_all #main .container_wrap_first h2 {
    	font-size: 30px;
    }
    #top.single-post #wrap_all #main .container_wrap_first p {
    	font-size: 20px;
    }

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

    Best regards,
    Mike

    in reply to: Alter space above and below a specific layout item #1461257

    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: Script doesn’t work on mobile #1461256

    Hi,
    Glad Guenni007 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

Viewing 30 posts - 1,381 through 1,410 (of 33,801 total)