Hi,
Thanks for making this tremendous wordpress theme!
I recently changed my website logo as text after I found the solution from this forum. But I don’t know how to vertically align the text logo ‘Yeonjae’ along to the navigation menu.
1. How to align ‘text logo’ along to the navigation menu
2. Can I make the active link for the ‘text logo’ highlighted with underline, same as navigation menu? Not like the way I did, using the underline tag <u>.
Thanks
I added below code to function.php
———–
add_filter(‘avf_logo_final_output’, ‘avf_text_logo_final_output’);
function avf_text_logo_final_output($logo) {
$link = apply_filters(‘avf_logo_link’, home_url(‘/’));
$logotext = “Yeonjae”;
$subtext = “”;
$subtext = “<span class=’subtext’>$subtext</span>”;
$logo = “<u><h5 class=’logo bg-logo’>“.$logotext.”$subtext</u></h5>”;
return $logo;
}
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.logo {
top: 15px;
text-decoration: underline !important;
}
and remove U tag
Cheers!
Yigit
Great! Thank you!