• Resolved ryan.slater

    (@ryanslater)


    Hi, I have a question regarding capitalization of my blog post titles.

    Can I do this via CSS easily? I want to keep sentence case in the sidebar, but make the blog post titles uppercase so they stand out.

    My site can be found here: http://www.ryan-slater.com

    Thanks,

    Ryan

Viewing 5 replies - 1 through 5 (of 5 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Apply text-transform: uppercase; to dark.css (it’s around line 99)

    .entry-title, .entry-title a{
     color: #DDD;
     text-transform: uppercase;
    }

    Thread Starter ryan.slater

    (@ryanslater)

    Hi, thanks for the reply. I am using a child theme, so should I bring dark.css into this child?

    If not, what modification should I make to the child theme styles.css?

    Thanks,

    Ryan

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    To your child theme style.css, just add this to the bottom of the file:

    .entry-title, .entry-title a{
     text-transform: uppercase;
    }

    Thread Starter ryan.slater

    (@ryanslater)

    Brilliant, thanks!

    Thread Starter ryan.slater

    (@ryanslater)

    Thanks guys!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Blog Post Title Capitalization’ is closed to new replies.