Hi There, Hope, you all are doing well. WEBSITE: https://www.directsupplyservices.com/brands/ I am stuck with this one. I want to change the color of these links to red (#a55353) but just for the BRAND page, not the entire site. For your reference: https://screenshots.firefox.com/CAwLzzA37n9pF8dh/www.directsupplyservices.com Kindly advise, how can I do that? Thanks & Regards, Rashida H.
Wrap the links in a div and have the divs within those links a specific color. So for exampple: <div id="container"> <a href="#">Link</a> </div> Code (markup): So you have you're link code above in a DIV and then add to your CSS the color you want any links inside the the DIV container to be, for example: #container a { color: #ff0000; } Code (markup): So now any links within that DIV section ONLY should be colored: #ff0000 I hope this helps.
You're very welcome, I'm glad I could help. Please note, you can also rename container to whatever you like. Also, to learn more stuff like this yourself sign up to freecodecamp it's totally free of charge and will help you to develop you coding skills and knowledge. This kind of stuff is covered in your first few lessons, good luck with your website!