Elysium
Elysium

Reputation: 173

How can I get rid of the bold setting the text?

I have h1 h2 and a for the text formatting.

In fact....h2 and a are identical,but I'd like to change a to non-bold text.

How can I do that?

here is my what I have put together so far:http://jsbin.com/tifuhute/44/

Upvotes: 0

Views: 92

Answers (1)

LcSalazar
LcSalazar

Reputation: 16841

Set font-weight: normal; to your css class:

#text h2 {
    color: #151515;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: normal;
}

Upvotes: 2

Related Questions