Tagged: 

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

    Hallo,

    wie kann ich den hinterlegten Headerlink, der zur Startseite führt, ändern ohne dass ich in die sytle.css muss? :)

    Dankeschön

    #666110

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

    cheers! works perfect!

    #666125

    Gerne – bis demnächst dann mal wieder in diesem Blog

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Header link entfernen’ is closed to new replies.