Forum Replies Created

Viewing 30 posts - 481 through 510 (of 33,332 total)
  • Author
    Posts
  • in reply to: Text Shadow for Headline Rotator and Special Heading #1465935

    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: Partner/Logo not loading all images #1465931

    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: Category page edits #1465930

    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: Bar below header and before main menu #1465929

    Hi,
    I’m not sure what would be “nicer on mobile view”
    But this added element is covering your LayerSlider so you could hide this on mobile or add more top margin/padding to your LayerSlider to push it down.

    Best regards,
    Mike

    in reply to: Category page edits #1465926

    Hi,

    .archive .container_wrap_first p {
    	font-size: 20px;
    }

    adjust to suit.

    Best regards,
    Mike

    in reply to: Bar below header and before main menu #1465922

    Hi,

    .main_menu {
    	padding-top: 20px;
    }

    Best regards,
    Mike

    in reply to: Category page edits #1465919

    Hi,
    Try this css:

    #top #main .sidebar_left .sidebar {
        border-right-style: none; 
    }
    .archive h1.av-banner-description p {
    	font-size: 80px;
    }

    Best regards,
    Mike

    in reply to: specify bar width length in pixels #1465917

    Hi,
    Try:

    .page-id-16420 .mejs-audio {
      width: 50% !important;
      min-width: 50% !important;
    }

    Best regards,
    Mike

    in reply to: Partner/Logo not loading all images #1465916

    Hi,

      Try disabling the lazyloading at Enfold Theme Options ▸ Performance ▸ Responsive Images And Lazy Loading ▸ Lazy Loading
      and if you have a caching plugin that also has lazyloading, disable it too.
      Then disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and clear your browser cache and check again.

    Best regards,
    Mike

    in reply to: Bar below header and before main menu #1465914

    Hi,
    Thanks for your screenshot, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function banner_below_the_header_and_above_the_main_menu() { ?>
      <script>
    // Create the new div element
    const newDiv = document.createElement('div');
    
    // Set the text content
    newDiv.textContent = 'The Most Comprehensive Alternative Wellness Experience In The Midwest';
    
    // Set the style properties
    newDiv.style.backgroundColor = 'gray';
    newDiv.style.color = 'white';
    newDiv.style.fontSize = '22px';
    newDiv.style.padding = '10px'; 
    
    // Add the flexbox properties
    newDiv.style.display = 'flex';
    newDiv.style.justifyContent = 'center';
    newDiv.style.order = '4';
    newDiv.style.flexBasis = '100%';
    
    // Find the element with class "main_menu"
    const mainMenu = document.querySelector('.main_menu');
    
    // Insert the new div before the main_menu
    if (mainMenu) {
      mainMenu.parentNode.insertBefore(newDiv, mainMenu);
    }
    </script>
      <?php
    }
    add_action( 'wp_footer', 'banner_below_the_header_and_above_the_main_menu', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    See the expected results in the screenshot below.

    Best regards,
    Mike

    in reply to: font #1465909

    Hi,
    Please see here:
    Screen Shot 2024 08 31 at 12.59.15 PM

    Best regards,
    Mike

    in reply to: Some issues with ajax portfolio #1465904

    Hi,
    When I check your site I see the iframe:
    Screen Shot 2024 08 31 at 11.36.44 AM
    and the three videos below it, if you clear your browser cache do you still not see your videos?

    Best regards,
    Mike

    in reply to: closed topic #1465903

    Hey Guenter,
    Thanks for your patience, please see the private commit.

    Best regards,
    Mike

    Hey tom,
    To close the burger with the Esc key, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function close_burger_on_esc_key() { ?>
      <script>
    (function($){
      $(document).keydown(function(e) {
        if (e.keyCode === 27) {
          $('.av-hamburger').removeClass('is-active');
          $('html').removeClass('av-burger-overlay-active');
          $('html').removeClass('av-burger-overlay-active-delayed');
          $('.av-burger-overlay').css({ 'display' : 'none', 'opacity' : 0 });
        }
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'close_burger_on_esc_key', 99 );

    I tested this on the demo that you linked to and it works.

    Best regards,
    Mike

    in reply to: font #1465894

    Hi,
    You can see here:
    Screen Shot 2024 08 31 at 9.30.58 AM

    Best regards,
    Mike

    in reply to: Changes to right sidebar header #1465790

    Hi,
    When I check it looks centered, perhaps try adjusting the numbers in the css above so the items are not so crowded, or move the logo with this css:

    #content2 .logo {
    	top: 100px;
    }

    use either positive or negative numbers. Unfortunately now that the items are being moved around there is not a way to make them keep the same px distance between all, so try to adjust these numbers until you like what you see.

    Best regards,
    Mike

    in reply to: Changes to right sidebar header #1465692

    Hi,
    When I check your site at 1536 x 864, that you wrote was your screen size, but I don’t see the menu over the logo:
    Enfold Support 6472
    To switch the two icons try this css

    .av-burger-menu-main.menu-item-avia-special {
    	  top: -120px;
    }
    #menu-item-search {
    	top: 100px;
    }

    You can also adjust the values and perhaps keep the icons away from the logo

    Best regards,
    Mike

    in reply to: Burger Menu #1465592

    Hi,
    Thanks, but the login doesn’t seem to be admin so we can’t see any of your theme settings, please update to admin.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I didn’t see an issue on the page that you linked to, but I found a another page with the issue, indead it was a z-index issue, so I added the custom class section-with-menu to the color section with the menu shortcode:
    Enfold Support 6470
    and added this css to your Quick CSS:

    .avia-section:not(.section-with-menu) {
    z-index: 0;
    }
    .avia-section.section-with-menu {
    z-index: 2;
    }

    and this seems to have helped, please check the page below and try to make this adjustment to your other pages.

    Best regards,
    Mike

    in reply to: Changes to right sidebar header #1465585

    Hi,
    I added this css to show the search icon for you:

    #top #content1 .av-main-nav > li.menu-item#menu-item-search {
    	display: block!important;
    }
    #top #content1 .av-main-nav > li.menu-item#menu-item-search a {
    	color: #92B743;
    	text-align: left;
    }
    #top #content1 .main_menu .menu li#menu-item-search {
    	float:none;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Disable Videos in Popup #1465504

    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: Seasonal calendar – further #1465502

    Hi,
    Thanks for the screenshot it helps me understand better, this might work better for you as a image map. Try uploading your image and select the bars, and add the link.
    Enfold Support 6465
    then click “show me the code”
    Enfold Support 6467
    then copy the code and paste into a code block element

    Best regards,
    Mike

    in reply to: Resize H1 e H1 font #1465427

    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: search icon opptions #1465426

    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: “Header Invisible Until User Scrolls” not working #1465425

    Hi,
    See WordPress ▸ Appearance ▸ Theme File Editor

    Best regards,
    Mike

    in reply to: Seasonal calendar – further #1465424

    Hi,
    Unfortunately, that would cause an issue with the links, could you use another bar?

    Best regards,
    Mike

    in reply to: Bug:Blog Header hooks no longer working properly #1465423

    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: Hook to add widget area above blog loop? #1465422

    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: Verschiedene Menues bei unterschiedlcihen Seiten #1465375

    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

    Hi,
    This sounds like a z-index issue, but I would need to see your site as I can’t reproduce this on my site.
    Please let us know when your site is online so we can see it.

    Best regards,
    Mike

Viewing 30 posts - 481 through 510 (of 33,332 total)