Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #255244

    Hi,

    I would like to add my Business Phone # to the right of the search bar on the business Nav Bar.

    Also, can we make it blue so it stands out and doesn’t look like a menu link?

    Thanks…

    http://businessoceans.com/

    Aaron

    #255461

    Hi boag!

    Thank you for using the theme!

    You can add this on functions.php:

    add_action('ava_after_main_menu','ava_phone_after_main_menu');
    
    function ava_phone_after_main_menu() {
    	echo "<div class='header-phone-number'>PHONE NUMBER HERE</div>";
    }

    Then use this code on Quick CSS:

    div.header-phone-number {
    position: absolute;
    right: 20px;
    top: 8px;
    color: blue;
    }

    Best regards,
    Ismael

    #256891

    can I add that to a child theme?

    #257010

    Hey!

    Yes, just add it on the child theme’s functions.php.

    Regards,
    Ismael

    #257396

    Thanks

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘add phone # to the right of Nav Menu Bar’ is closed to new replies.