The Logo________________xyz

Hi Sanjeev,

Is it possible to have no logo on the internal pages - product pages, category pages etc and only see it on the homepage?

thx

Hello,

This will require custom CSS and customization of the template since the logo is site wide element. However, I will guide you and you can achieve it as below and customize further at your end if required:

  1. Go to appearance >> customize >> custom css and js >> custom css and copy / paste the css below:

div.logo {
display: none !important;
}

  1. Go to Pages >> Home and edit the home page with VC Page Builder and click on cog icon on top right as shown in attached screenshot which will bring up CSS box where you need to copy/paste the CSS below:

div.logo {
display: block !important;
}


Thank you

Thank you worked perfect - you are a CSS master!!!