adl333 Posted November 9, 2019 Share Posted November 9, 2019 Hi there, website is belvederebc.com, I'm trying to change the font colors of each link in "communities" subnav, first one (Residences at Belvedere) to #a00101 (red) second to #29a5a5 third to #2e8c2e fourth to #e65c00 Any help (even just some) would be greatly appreciated. Thanks! Link to comment
tuanphan Posted November 9, 2019 Share Posted November 9, 2019 Add to Home > Design > Custom CSS .subnav ul li:nth-child(1) a { color: red !important; } .subnav ul li:nth-child(2) a { color: green !important; } .subnav ul li:nth-child(3) a { color: violet !important; } 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!) Link to comment
adl333 Posted November 9, 2019 Author Share Posted November 9, 2019 Thats a good thought but that would apply to all subnavs, I need Community only Link to comment
tuanphan Posted November 9, 2019 Share Posted November 9, 2019 43 minutes ago, adl333 said: Thats a good thought but that would apply to all subnavs, I need Community only try nav.main-nav .folder-collection.folder:nth-child(3) .subnav ul li:nth-child(1) a { color: red !important; } nav.main-nav .folder-collection.folder:nth-child(3) .subnav ul li:nth-child(2) a { color: violet !important; } 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!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.