Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1480724

    Hi,
    I’d like to add a notification bar at the very top of the website pages at townleypoolandspa.com. Can you please help me do this simply? Thanks!
    Justine

    #1480750

    Hey jnightingale,

    Thank you for the inquiry.

    You can directly override the header.php file in your child theme or insert widgets into the header area. Another option is to enable the settings in Enfold > Header > Extra Elements > Header Phone Number/Extra Info. Please refer to the documentation for more info.

    https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    #1480801

    Hi, Ismael,
    I already have something in the extra elements (the large phone number). I tried using the documentation to add the code to the function.php file, but it wouldn’t save. All I want is a thin colored bar at the top of townleypoolandspa.com that says “FREE delivery within 60 miles”. Is there another way to accomplish this?
    Thanks,
    Justine

    #1480816

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

    function custom_message_banner_script() { ?>
      <script>
    (function($){
      $('#top #header_meta > .container').each(function() {
      	var messageTitle = 'FREE delivery within 60 miles';
      	var messageBanner = $('<p class="message-banner">'+ messageTitle +'</p>').css({'text-align':'center','margin-top':'0','background-color':'red','margin':'0','z-index':'1','position':'relative','color':'#fff'});
      	$(messageBanner).insertBefore('#header_meta');
    });
    })(jQuery);
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_message_banner_script', 99 );

    adjust the colors to suit. This is the result for transparent desktop headers:
    Screen Shot 2025 04 05 at 7.03.19 AM
    and scrolled desktop headers:
    Screen Shot 2025 04 05 at 7.05.19 AM
    and mobile headers:
    Screen Shot 2025 04 05 at 7.06.48 AM

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.