I want to change the font color of the Quick-Links on the top of my page only (due to design issues).
Is this something I would be doing through CSS, or would I need to alter a particular .tpl file? Is so, please let me know exactly which file that is. I have searched everywhere and cannot locate the correct .tpl OR CSS file. Very frustrating.
Thanks for your help!
in skins/yourskin/customer/styles.css
find this
.quick-links a, .quick-links a:visited, .quick-links a:active, .quick-links a:hover {
font: bold 10px Tahoma;
padding: 0px 3px;
text-decoration: underline;
margin: 0;
then add your colour to it like this, color: #f00000;
John