Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Can't change font color Reply To: Can't change font color

#164540
Paulie_D
Member

You really shouldn’t be using inline styles in your HTML.

Change this

<span style="font-family:Constantia; font-size:19px; color: #2089AF;"><a href="http://thecontentbloke.com/shopping-mall-misadventure/">Read More...</a></span>

to this

<span><a href="http://thecontentbloke.com/shopping-mall-misadventure/">Read More...</a></span>

and add an appropriate class.

You have this

.feature_contentbox a.readmore {
    color:#2089AF;
    font-size:19px;
    line-height:21px;
    font-family: "Constantia";
    margin-top:15px;
    font-weight:normal;
    display:block;
}

.feature_contentbox a.readmore:hover {
    opacity:0.5;
}

I suggest you expand it to include .feature_infobox links