Different logo on the homepage?

Hello!

I’m new to BB, but so far I’m really liking it!

I have a situation where I need to display a unique logo image on the home page. Is there a way to override the logo image settings on specific pages?

Fingers crossed

-David

Awesome, great to hear David! Re. setting different logos on different pages, that isn’t functionality baked in. You would need to do some custom CSS work to do that. Each page has a body class page ID you could target with CSS if you want to give that a shot. Let me know how it goes!

Best,
Billy

The only way I could get it working was to set the homepage logo’s opacity to 0:
.home .fl-logo-img {opacity: 0;}

Then apply a background image to the containing element:
.home .fl-page-header-logo { background-image: url("/wp-content/uploads/2015/02/logo-candidate-white.png"); background-repeat: no-repeat;}

Seems to work fine…