Different logo

Hi. I would like to have my default logo on the home page, but a variation of the logo on all other pages. (The opposite of this: https://theme.co/apex/forum/t/would-like-to-use-different-logo-on-1-page-only/30919). How can I do that?

Never mind. I figured this out. I set the logo I want on the other pages as the default logo in theme options and used the .page-id-# .x-breadcrumb-wrap {
display: none;
}
(where # is home page id #) to the logo I want on the home page only. Thanks @Prasant.

Hi @HGPower,

Thank you for reaching out to us. Yes that’s right, you can simply change the page ID in the following code to change the logo:

jQuery(".page-id-26523 .x-brand img").attr("src","Logo Image URL goes here");

But I see you’ve used the following code as well:

.page-id-# .x-breadcrumb-wrap {
display: none;
}

Please note that this will hide the breadcrumbs from that page. This code is not relevant to your initial query so you can remove this part.

Cheers!

Thank you.

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.