Free components can be used in unlimited number of websites. Please provide proper copyright attribution where possible with every use of our components. Learn More
Steps to Implement this Component
To change the logo on one page, simply paste the codes to the Page Settings > Header Code Injection
Change Logo on Desktop
<style> .header-display-desktop .header-title-logo a::before { content: ""; background-image: url(IMAGE-PATH); width: 100%; height: 100%; background-size: contain; background-repeat: no-repeat; background-position: left;//change to center if neede position: absolute; top: 0; left: 0; } .header-display-desktop .header-title-logo { position: relative; } </style>
Youtube walkthrough coming soon
Change Logo on Mobile
<style> .header-display-mobile .header-title-logo a::before { content: ""; background-image: url(IMAGE-PATH); width: 100%; height: 100%; background-size: contain; background-repeat: no-repeat; background-position: left;//change this to center if needed position: absolute; top: 0; left: 0; } .header-display-mobile .header-title-logo { position: relative; } </style>