Change uppercase in headings
-
I’m extremely new to CSS (As in last week I thought HTML and CSS were the same thing). But, I’ve been trying to learn as much as I can to have better control over
First, I looked for help in the forums, they said to change
}
.entry-title {
text-transform: uppercase;
margin: 0;
font-size: 48px;
line-height: 53px;
-ms-word-wrap: break-word;
word-wrap: break-word;(text-transform)to “none.” That didn’t work. Then, I used Google Inspect (magnificent tool) to change
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.comment-content h1,
.comment-content h2,
.comment-content h3,
.comment-content h4,
.comment-content h5,
.comment-content h6 {
text-transform: uppercase;
}
blockquote {(text-transform)to “none” and THAT worked, but when I changed it in the Editor… it didn’t change anything so I changed it back to uppercase (since I don’t know what I’m doing.)
I’m accessing Editor by going to Appearance – Editor in the dashboard. editing the stylesheet and clicking update file.
WHAT am I doing wrong???
- The topic ‘Change uppercase in headings’ is closed to new replies.