Site logo

Archived topic

Italics in Header Shows only on Home Page

3 replies · Started by James on July 23, 2018

Viewing posts 1–4 of 4

Recently, I added the CSS code:

h1 {
    font-style: italic;
}
h2 {
    font-style: italic;
}

My site title is italicized on the home page, but not on any other page. I have cleared caches and tried different browsers. Here's the link:
The Miramichi Reader

Aah ok, on your home page the site title is given the H1 whereas on other pages it is the page title, so you need to add this selector as well .main-title - little tip, when elements share code you concatenate the rules like so:

h1, h2, .main-title {
    font-style: italic;
}

Great! Thanks again for the great support. 👍

Glad i could help!

This archived topic is closed to new replies.