giorgiabbb Posted July 11, 2019 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 :)
tuanphan Posted July 11, 2019 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 Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
giorgiabbb Posted July 11, 2019 Author Posted July 11, 2019 Worked perfectly, thank you !!! @tuanphan
Recommended Posts
Archived
This topic is now archived and is closed to further replies.