Tagged: 

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

    Hi,
    how can I use a different logo for the mobile version?

    Thank you!

    #1423875

    Hey dreamreader,

    Thank you for the inquiry.

    You can add this code in the functions.php file to assign a different logo on mobile view.

    /*Use a different logo on mobile*/
    add_filter('avf_logo','av_change_logo');
    function av_change_logo($logo) {
        if ( wp_is_mobile() ) {
            $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
        }
        return $logo;
    }
    

    Just replace the URL with your own image.

    Best regards,
    Ismael

    #1423902

    Hi Ismael,
    thank you for the answer.
    I will try your suggestion.
    Thank you!
    Regards

    #1423921

    Hi,
    Very good, if you need further assistance please provide a link to your page so we can examine and assistance further.

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.