Tagged: header
Hallo,
wie kann ich den hinterlegten Headerlink, der zur Startseite führt, ändern ohne dass ich in die sytle.css muss? :)
Dankeschön
if you like to change the link than try this in your child-theme functions.php
add_filter('avf_logo_link','av_change_logo_link');
function av_change_logo_link($link)
{
$link = "http://kriesi.at";
return $link;
}
if you only want to get rid of the klick action do this in quick css:
div .logo {
pointer-events: none;
}
cheers! works perfect!
Gerne – bis demnächst dann mal wieder in diesem Blog