Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #339812

    Hi,
    I’d like to add an HTML logo to the right of the existing logo.
    Essentially – I’d like to add the words “Sasscer, Clagett & Bucher” to the right of the logo. I want to be able to use Google Fonts and also have this be responsive.
    Thanks,
    Gabe

    #339819

    Hi Gabe!

    You can use the avf_logo_final_output hook, something like this:

    function av_change_logo($logo, $use_image, $headline_type, $sub, $alt, $link){
           $logo .= "<div class='custom_content'>Custom HTML content here</div>";
    	return $logo;
    }
    add_filter('avf_logo_final_output', 'av_change_logo', 100, 6);

    Cheers!
    Josue

    #340173
    This reply has been marked as private.
    #340257

    Hi!

    Try using position:

    .custom_content{
    position: absolute;
    top: 0;
    right: 200px;
    }

    Play around those values.

    Cheers!
    Josue

    #340280
    This reply has been marked as private.
    #340291
    This reply has been marked as private.
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to add an HTML logo to the right of the existing logo’ is closed to new replies.