Where can I change the font color from Black to red for the*primary content
*<div class="page-title category-title">
* <h1>Melt Clamshells</h1>
</div>
Carlos
1 answer
Go to this File: /skin/frontend/default/jm_classy/css/styles.css
Replace this code
HTML Code:
.page-title h1 { color: #333; font-size: 48px; line-height: 100%; margin: 0 0 80px; text-align: center; text-transform: uppercase; }
With
HTML Code:
.page-title h1 { color: #FF0000; font-size: 48px; line-height: 100%; margin: 0 0 80px; text-align: center; text-transform: uppercase; }
I have replaced #333 to #FF0000 in the above code.