asgsport 0 Report post Posted August 1, 2011 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 3 Report post Posted August 1, 2011 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 0 Report post Posted August 2, 2011 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 6 Report post Posted August 5, 2011 .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