primary content

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

Profile photo of chavan 100.00 $tone March 1, 2014
Public

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.

#1

Please login or Register to Submit Answer

Written By

Comments