Hi team,
I replaced my site logo today and while the tablet and mobile views were fine, the desktop view refused to show. On inspection, I found that this was active in the code:
.site-logo:not(.page-hero-logo){
display: none;
}
To rectify this, I added the following code to the additional css,
.site-logo:not(.page-hero-logo){
display: block !important;
}
While this works for now, I can’t see how is was active in the first place. Apart from activating the logo in site identity, what should I have done? Thanks in advance.