Forum Replies Created

Viewing 30 posts - 241 through 270 (of 33,765 total)
  • Author
    Posts
  • in reply to: H2 Not Staying the Right Size #1474979

    Hi,
    For H2 headings in text elements, the default font size is 28px, this is a different element that the “Special Heading”.
    I made the change for you in the Enfold Theme Options ▸ General Styling ▸ Typography ▸ Advanced Options: Customize Typography Settings
    Screen Shot 2025 01 11 at 8.01.48 AM
    adjust to suit, these are now 40px
    Screen Shot 2025 01 11 at 8.03.32 AM
    On your /hot-spring-spas-vigor-cold-plunge/ page that are all “Special Heading” elements or H3 and are correct from Ismael above.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: height of the flipbox grid element #1474976

    Hi,
    Try changing to this:

    #av_section_5 .av-align-middle {
        vertical-align: top;
    }
    #av_section_5 .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback {
        height: 500px;
    }
    #av_section_5 .avia-icon-grid-container .avia-icongrid-flipbox .avia-icongrid-wrapper .avia-icongrid-front.bg-img:before {
        background-size: cover !important;
    }

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

    Best regards,
    Mike

    in reply to: height of the flipbox grid element #1474943

    Hey Gianluca,
    Thank you for your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av_section_5 .av-align-middle {
        vertical-align: top;
    }
    .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-front, .avia-icongrid-flipbox .av-icon-cell-item .avia-icongrid-flipback {
        height: 500px;
    }
    .avia-icon-grid-container .avia-icongrid-flipbox .avia-icongrid-wrapper .avia-icongrid-front.bg-img:before {
        background-size: cover !important;
    }

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

    Best regards,
    Mike

    in reply to: home page config #1474900

    Hi,
    It looks like your wp-rocket plugin has a lazyload option enabled causing this issue, please disable and clear your cache.

    Best regards,
    Mike

    in reply to: Probleme mit Portfolio Raster #1474898

    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: How to adjust blog ingress mark amount? #1474897

    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: Mute button in Vimeo video #1474896

    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

    Hi,
    Thank you for your feedback, we understand that this doesn’t occur with the default editor, but in some cases it will occur with the Avia Builder and templates.
    Please publish your pages and view is a new tab for best results. This is related to the WordPress preview feature and we can not change this feature via the theme, thank you for your understanding.
    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 Rustum,
    Since this only occurs when you “preview” a draft it is related to the WordPress preview feature. When this is used WordPress doesn’t load all of the elements and scripts to show the page correctly. We don’t have a way to force this without changing the WordPress core files.
    We recommend publishing the page and view in a new tab as you work on it, if you want to hide the page as you work on it try adding a password to it so only you can view it.

    Best regards,
    Mike

    Hey coredesignsupport,
    Thank you for your patience, the blocks have a negative top margin so they show outside the color section with the ID “Service”
    Try removing this ID and add it to one of the blocks.

    Best regards,
    Mike

    in reply to: Line under color section #1474784

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

    .container_wrap {
        border-top-style: none;
    }

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

    Best regards,
    Mike

    in reply to: Color Section Glitch? #1474783

    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: Unusual incredibly low loading page speed #1474782

    Hi,
    Typically this is caused by a caching plugin that delays the fonts from loading until after the page loads, so in that first second the browser uses the brow default fonts and then when the fonts are loaded they are used. Try checking your plugin for a setting that may do this, or use the Enfold Theme Options > Page Preloading option to show the page after it is fully loaded.

    Best regards,
    Mike

    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,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field instead:

    #top .fullsize .template-blog .post_delimiter {
        border-bottom-width: 3px;
    }

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

    Best regards,
    Mike

    in reply to: Custom CSS to hide image title #1474725

    Hey Renaud,
    If you are not using 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 this code and save.

    function custom_script() { ?>
      <script>
    (function($){
      $('img').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
      $('.av-masonry-image-container').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
      $('a').hover(function(e){
          $(this).attr('data-title', $(this).attr('title'));
          $(this).removeAttr('title');
      },
      function(e){
          $(this).attr('title', $(this).attr('data-title'));
      }); 
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Best regards,
    Mike

    in reply to: Move Small Bar Above Menu #1474680

    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: Widget with the content of a page #1474675

    Hi,
    I don’t expect the short code in a header widget to add the breadcrumbs, perhaps as Guenni007 posted the original breadcrumbs are hidden by padding or margin from the widget or they are disabled on the page. We would need to login to see.
    I don’t see any breadcrumbs on your example site link.

    Best regards,
    Mike

    in reply to: Logo mobile menu #1474674

    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 your understanding and using Enfold.

    Best regards,
    Mike

    in reply to: Color Section Glitch? #1474673

    Hi,
    Thanks for your patience, when I edit your footer page color section I see a 403 server error for your admin-ajax.php
    When I copy your footer page to my test site it works correctly with no error.
    This could be many server issues, first I would look at your low server settings for:
    PHP max input variables
    PHP time limit
    Max input time
    :
    Screen Shot 2025 01 05 at 9.37.18 AM
    try updating to these:
    Screen Shot 2025 01 05 at 9.39.12 AM
    There are other possible issues for a 403 error on admin-ajax.php, such as server Mod_Security or custom rules in your .htaccess file, which you have:
    Screen Shot 2025 01 05 at 9.46.25 AM

    Best regards,
    Mike

    in reply to: Logo mobile menu #1474671

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

    .av-horizontal-gallery-large-gap .av-horizontal-gallery-wrap {
    	margin-right: 30px;
    }

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

    Best regards,
    Mike

    in reply to: Easy Slider image description #1474670

    Hey a-l-p,
    Thank you for your patience, this is not a easy solution in the Easy slider, please consider the LayerSlider where you can add text to the bottom of the slide with a text element in the slide.

    Best regards,
    Mike

    in reply to: Logo mobile menu #1474668

    Hi,
    I did not find a horizontal gallery on your site, but the element has three options, no gap, 1px gap, large gap:
    Screen Shot 2025 01 05 at 9.01.04 AM
    If large gap is not enough, please explain further and create a test page for us to examine.

    Best regards,
    Mike

    in reply to: Logo mobile menu #1474663

    Hi,
    It looks like you have this custom css:

    .logo img {
        position: relative;
        top: 20px;
    }

    change to this:

    @media only screen and (min-width: 768px) { 
    	.logo img {
        position: relative;
        top: 20px;
    }
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Instead of using the short “youtu.be” link, please use the full youtube link, I changed this for you and now it works, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: LayerSlider Transition between Slides #1474660

    Hi,
    Thank you for your patience, I see that your layerslider is based on the original slide from the original demo, since then the LayerSlider has been updated a lot. I was able to remove the 3D transition by changing the timing to zero on the first slide:
    Screen Shot 2025 01 05 at 7.34.55 AM
    please clear your browser cache and check.

    Best regards,
    Mike

    Hey Marcel,
    In your gallery element you had “Lightbox linking active”, you need to use “Use custom link”:
    Screen Shot 2025 01 04 at 2.12.57 PM
    I changed for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: text hide #1474633

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

    .search.search-results .post-meta-infos,
    .search.search-results .entry-content{
    	display: none;
    }

    Before:
    Screen Shot 2025 01 04 at 2.02.03 PM
    After:
    Screen Shot 2025 01 04 at 2.01.00 PM

    Best regards,
    Mike

    in reply to: Move Small Bar Above Menu #1474632

    Hey ballindigital,
    To move topbar below the header I added this script to your Snippets plugin.

    function custom_script() { ?>
      <script>
    (function($) {
      function a() {
        $('#header_meta').detach().insertAfter('#header_main');
      }
      a();
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    Screen Shot 2025 01 04 at 1.51.22 PM
    Screen Shot 2025 01 04 at 1.52.35 PM
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Considering switching to Enfold #1474631

    Hey Robert Simmons,
    Thank you for your patience,
    1: Our team spread throughout the world with different time zones, currently we don’t have a support agent in Austria, but the Dev Team is.
    2: I don’t know about HPOS, but it looks like you only need to add this code to your functions.php file:

    add_action('before_woocommerce_init', function(){
        if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
            \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
        }
    });

    I have not tested.
    3: The plugin Events Calendar should work, but the layout will be a little different, please see this example, I don’t have a way to test Event Tickets Plus or WooCommerce Product Table from Barn2, this is a third party plugin and sometimes they have issues.
    4: We update as needed, we updated 14 times last year, see the dates here
    5: The Dev Team has maintained backward compatibility with each update, and try to balance it with the issue, for example, if the issue is with a specific plugin or customization it may be a one-off fix, if it is with a major issue we may offer a one-off fix to help with the Dev Team reviewing a permanent fix.
    6: Enfold can not import WPBakery Builder nor is WPBakery Builder compatible with Enfold’s builder. You will most likely need to recreate your site from scratch. Plain WP posts with no WPBakery Builder elements can be imported can continue to use the WP builder.
    7: same as above.
    8: we don’t have a pulbic road map, but you can see the Feature Requests that the team is working on here.
    I looked at your site and you should be able to recreate it with Enfold, but the layout may be a little different, please see some of our examples here. I hope that this helps.

    Best regards,
    Mike

Viewing 30 posts - 241 through 270 (of 33,765 total)