top_quick_links vers 2.14

Quick question please.

I am using the “Solitude” template, but I don’t know if it matters. All I want to do is change the color of the text in the “top_quick_links” at the very top in the header to white text. I don’t want to change the color anywhere else.



I cannot for the life of me figure out where to make this simple change. I am new to CS-cart, but familiar with html & CSS, so I would appreciate it if someone could point me in that direction. Thank you!

.quick-links a{

color: #mycustomcolor;

}



Change to your color and place in the style.css of that template at the very bottom.



On the other hand, that might also color the bottom quick links. Try this for top only:



.header-helper-container p a{

color: #mycustomcolor;

}

Worked perfect. Thanks!