How can I change a logo

I wish to change the logo depending of the page . I mean i wish to change the silvertooth creative logo from here
http://demo.theme.co/agency/
depending the page .

For example on page 1 ) is the original logo , but on page 2) the logo is another . Could be possible to do it using the Id of the pages or unfortunately it would not be possible to be done ?

Hi there,

Thank you for reaching out to us. You can do this with custom jQuery, add the following code in the Theme Options > JS:

jQuery(document).ready(function($){
	$(".page-id-7 .x-brand img").attr("src", "http://image-1.png");
	$(".page-id-8 .x-brand img").attr("src", "http://image-2.png");
	$(".page-id-9 .x-brand img").attr("src", "http://image-3.png");
});

Just get the page ID ( https://theme.co/apex/forum/t/setup-how-to-locate-post-ids/59 ) and replace it in the above code with logo image URL.

Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!

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