• Resolved johnparis

    (@johnparis)


    Hello:

    My site uses the Skeleton theme and I have an icon and title I would like to replace with a simple logo file. Can someone help me find where I might swap out the file? I’ve tried replacing it in the header, but to no effect.

    My site is https://www.johnparisband.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • Vamsi

    (@mannemvamsi)

    Go to admin panel -> Appearance-> Customize-> Header -> Choose your logo.

    Thread Starter johnparis

    (@johnparis)

    Thanks, but that is the header image/banner upload. The theme doesn’t give me the option of using a logo instead of the title and tag line. Is there a way to remove the title and tag and replace it with a logo?

    Theme Author simplethemes

    (@simplethemes)

    Actually @vamsi is correct, but the image should be resized or it will look like a banner image.

    In your child theme, you could also hook into skeleton_child_logo():

    function my_custom_logo() {
        ?>
        <a class="logotype-img" href="<?php echo esc_url( home_url( '/' ) );?>" title="<?php echo esc_attr( get_bloginfo('name','display'));?>" rel="home">
            <img src="path/to/logo.png" alt="logo">
        </a>
        <?php
    }
    add_filter( 'skeleton_child_logo','my_custom_logo');
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How can I remove the title tag and replace it with a logo file?’ is closed to new replies.