Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #377936

    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

    #377942

    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;
    }

    #378343

    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

    #381602

    Great! Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Vertical alignment of text logo on header’ is closed to new replies.