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…
Aaron
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
can I add that to a child theme?
Thanks