Viewing 5 replies - 1 through 5 (of 5 total)
  • Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    Can you please post a link to an example page or post?

    Thread Starter valentinauliviers

    (@valentinauliviers)

    https://bodyspiritflow.com/

    • This reply was modified 6 years, 3 months ago by Geoffrey Shilling. Reason: Link wasn't showing, updated the URL
    • This reply was modified 6 years, 3 months ago by Geoffrey Shilling.
    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    You should be able to add the following code to the “Additional CSS” section in the customizer, changing “red” to whatever color you want to use.

    To change the title on individual pages:

    .entry-title {
        color: red;
    }

    To change the main site title (it looks like the theme is using !important, so you may need that to override its settings):

    .site-title a {
        color: red !important;
    }
    Thread Starter valentinauliviers

    (@valentinauliviers)

    Hi, thank you, what if I do not want it red? I do not want it to be red. I would like to be able to choose a color

    Geoffrey Shilling

    (@geoffreyshilling)

    Volunteer Moderator

    No worries, red was just an example. You can use any color you want, just replace the ‘red’ with whatever you want to use. Below are a few examples:

    Using a named color:

    .entry-title {
        color: green;
    }

    Using a hex code:

    .entry-title {
        color: #0073aa;
    }

    Using RGB:

    .entry-title {
        color: rgb(0,115,170);
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How can I change the title color?’ is closed to new replies.