Jump to content
Sign in to follow this  
asgsport

Brand Image

Recommended Posts

asgsport

Hi Guys, how can I have a custom Brand logo for each page? seems as though I can only set a universal one in Design settings. Kind Regards

Share this post


Link to post
Share on other sites
Kate

You can do this with CSS. You would have to use the unique ID (generated as a class on the body tag) that's available for each page. Then use that to customize your CSS on a page by page basis.

Share this post


Link to post
Share on other sites
asgsport

Hi Kate, I know its through CSS, but im quite new to CSS so not sure how to call that function.

Share this post


Link to post
Share on other sites
kastelic
	.page-id-123 .mainlogo-link img { display:none }
	.page-id-123 .mainlogo-link{
	display:block;
	width:200px;
	height:100px;
	background: url( YOUR-IMAGE-URL) no-repeat;
	}
	

You need to replace the page id with your particular page id, and insert your image url of course. Paste the result into Custom Code-> Custom CSS.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×