• Resolved pinkerton84

    (@pinkerton84)


    Hello everyone, thanks in advance for any help.

    Designing a cooking page with the Kale theme. I noticed that all the headings in my blog posts (H1, H2, H3, etc) are appearing in all caps. I’d rather not have them like this. I’d like to have upper and lower cases letters at my own choosing.

    I tried searching, even found some html code that solved some of the problems, but not all.

    .page .entry h1 {
    text-transform: capitalize;
    }
    .page .entry h2 {
    text-transform: capitalize;
    }
    .page .entry h3 {
    text-transform: capitalize;
    }

    .entry-title, .page-title {
    text-transform: none;
    }

    h1.widget-title, h1.sidetitle, h2.widgettitle {
    text-transform: none;
    }

    Sadly, this didn’t help any blog headings that are H2, H3, etc.

    If anyone has some way to help, that would be great. Thank you.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @pinkerton84,

    Thanks for getting in touch about this, and thank you for using Kale! ??

    This particular page is actually a post, not a WordPress “page”, which is why some of that CSS isn’t working in this setting. You can use this to target the headings in posts:

    .single-post .entry h1, .single-post .entry h2, .single-post .entry h3 {
        text-transform: capitalize;
    }

    Hope this helps- if there are any specific areas you’re still having trouble with, just let us know.

    Thread Starter pinkerton84

    (@pinkerton84)

    Steven, aces! Thank you for the html. Works great.

    Great to hear that- thanks so much for the follow up!

    If you need anything else, don’t hesitate to get in touch! ??

    Thread Starter pinkerton84

    (@pinkerton84)

    I really appreciate the help. Should something else pop up, I’ll try to find the solution first. I’ve had a luck figuring out everything, besides this problem, so far. But should I be in a jam, will post again for sure.

    Thank you for your time.

    Thread Starter pinkerton84

    (@pinkerton84)

    For anyone else who need it, the html works great.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Kale – Blog post titles in ALL CAPS’ is closed to new replies.