Hi,
I have 7.1 portfolio pages with background banner images where the logo and nav need to change to white to be more visible. (Background banner seems to be automatically detected on other pages though, with the nav changing automatically to white?)
Thanks to this forum, I've been able to target just the portfolio pages via javascript that adds a class to those portfolio pages. The nav color change seems to work, but the logo is not getting hidden or replaced. Not sure why. I've tried different code that I've found, but nothing seems to work for the logo.
I don't think I can use 'inverse' since the client's logo is a bluish-grey.
Portfolio collection page
Portfolio page
Appreciate any help and open to suggestions. Thank you!
//Change Logo and Nav color//
.twc-collection-type-portfolio {
.header-title-logo img {
visibility: hidden !important;
}
.header-title-logo a {
background-image: url(https://static1.squarespace.com/static/62b8cab7cbbc6359efdfc5dd/t/63334cfc58a9522e8fa8f45b/1664306428278/ZH-Architects-logo-white-500.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.header-nav-item a {
color: #FFF !important;
}
.header-nav-folder-content {
background: #6A7284 !important;
}
}