alecmomont Posted January 4, 2020 Posted January 4, 2020 Hi, I'm trying to remove the banner image from a few of the pages on my website I managed to do so using: <style> .Intro.Intro--has-image{ display: none; } </style> My problem now is that it still seems to think that there is an image so my logo is rendered in white. Anyone see a solution to this? Thanks! Alec
christyprice Posted January 4, 2020 Posted January 4, 2020 Hi @alecmomont, try changing your code to this. It should both remove the banner and invert the logo. <style> .Intro.Intro--has-image{ display: none; } .Header-branding-logo { -webkit-filter: invert(100%); filter: invert(100%); filter:progid:DXImageTransform.Microsoft.BasicImage(invert='1'); } </style> christyprice.com 🇺🇸 Austin, TX US 🐾 ✅ Get my Starter Template for Web Designers 🎬 Watch 7 Ways to Save Time as a Squarespace Designer from Circle Day 2024 🎥 Watch Circle Live: Hello Income (feat. Christy Price and Jeremy Schwartz)
alecmomont Posted February 5, 2020 Author Posted February 5, 2020 Hi Christy, or anyone else, I might have done something wrong but ever since applying this to a new page this code has stopped working. I made this dummy page which has the above code embedded: http://www.alecmomont.com/test Anyone see a solution? Thanks
tuanphan Posted February 5, 2020 Posted February 5, 2020 2 hours ago, alecmomont said: Hi Christy, or anyone else, I might have done something wrong but ever since applying this to a new page this code has stopped working. I made this dummy page which has the above code embedded: http://www.alecmomont.com/test Anyone see a solution? Thanks where banner? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
alecmomont Posted February 6, 2020 Author Posted February 6, 2020 Hi Tuanphan, the banner is hidden because of the code, but as you can see my logo still shows up as being white.
christyprice Posted February 6, 2020 Posted February 6, 2020 Hi @alecmomont, Try using this instead since you are using your site title in text instead of an image. <style> .has-site-title .Header-branding { color: #1a1f2d !important; } </style> christyprice.com 🇺🇸 Austin, TX US 🐾 ✅ Get my Starter Template for Web Designers 🎬 Watch 7 Ways to Save Time as a Squarespace Designer from Circle Day 2024 🎥 Watch Circle Live: Hello Income (feat. Christy Price and Jeremy Schwartz)
Recommended Posts
Archived
This topic is now archived and is closed to further replies.