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
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
Hi!
Try using position
:
.custom_content{
position: absolute;
top: 0;
right: 200px;
}
Play around those values.
Cheers!
Josue