I have added this to the functions.php:
add_action(‘ava_after_main_menu’,’logo_text’);
function logo_text() {
echo “<div class=’logo-text’><h2>On-Site/On Your Time</h2></div>”;
}
I have added this to the quick CSS:
.logo-text {
position: relative;
top: -120px;
left: 80%;
}
Nothing displays
Hey kburbank!
Please try
add_action('ava_after_main_menu','logo_text');
function logo_text() {
echo "<div class='logo-text'><h2>On-Site/On Your Time</h2></div>";
}
But come and copy it from the site, not the email please
Cheers!
Basilis
I copied from here I have never received an email.
It also did not work.
Hi!
Please change your custom CSS code to following one
.logo-text {
position: relative;
top: 10px;
left: 25%;
}
Cheers!
Yigit
Resolved – Thank you!