• Resolved Liz

    (@elc95736)


    So I was able to figure out two things:
    1) How to size/position the logo differently for each page if I want (or in this case, all of the subpages have a smaller logo)
    2) How to remove that sub-page logo from the homepage

    What I need now is how to get my homepage logo onto the homepage and how to position it.

    This is my site: https://doehrmann.com/wordpress/

    I’d love your help, I’m doing this for work and would like to get the finishing touches together!

Viewing 1 replies (of 1 total)
  • Leave the large logo as the main uploaded logo and add this to your child theme’s functions.php:

    add_filter( 'tc_logo_src' , 'my_smaller_logo_src' ) ;
    function my_smaller_logo_src($logo_src) {
    	if ( !is_front_page() ) {
    		$logo_src = 'https://doehrmann.com/wordpress/wp-content/uploads/littlelogo1.png';
    	}
    	return $logo_src;
    }

    This tells Customizr to load the smaller logo if you are not on your front page.

    This may not work with future versions of Customizr, as this code may be changed in future release. Check in here again before upgrading Customizr.

Viewing 1 replies (of 1 total)
  • The topic ‘I want a different logo on my homepage than subpages’ is closed to new replies.