Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #382707

    Hi – I’ve had a request to add scrolling text to the header – in the white space between the logo and social media icons. First, is this possible and if so, how do you do it? Link to site is below.

    Thank You!
    Anna

    #382951

    Hi annameis!

    Thank you for using Enfold.

    What do you mean by scrolling text? Please provide a screenshot. You can use this filter on functions.php to insert content inside the header:

    /**
     * Add elements on the main header
     */
    
    add_action('ava_main_header', 'ava_main_header_addition');
    function ava_main_header_addition() {
    $output  = "CONTENT HER";
    echo $output;
    }

    Regards,
    Ismael

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