giorgiabbb Posted July 11, 2019 Share Posted July 11, 2019 Hello, I would like my navigation to have different colors than the other pages only in the About page: http://www.giorgiabrugnoli.com/about-the-fox I'd like the hover color to be hsl(11.7, 57%, 73.5%) and the active color to be hsl(38.6, 85.6%, 53.7%). What's the code injection here? Thank you in advance :) Link to comment
tuanphan Posted July 11, 2019 Share Posted July 11, 2019 @giorgiabbb Each Page will have different ID. First, you need to find ID of that page. See how to: https://beaverhero.com/squarespace-how-to/#HowtoFindPageID Then use CSS (Home > Design > Custom CSS). Add !important to after if it doesn't work. /* Here is ID of About, so you can use without checking */ /* Hover Color */ body#collection-556b28f6e4b03db7843679b5 .main-nav a:hover { color: hsl(11.7, 57%, 73.5%); } /* Active Color */ body#collection-556b28f6e4b03db7843679b5 .main-nav .active-link a { color: hsl(38.6, 85.6%, 53.7%); } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
giorgiabbb Posted July 11, 2019 Author Share Posted July 11, 2019 Worked perfectly, thank you !!! @tuanphan Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.