• Resolved MarteenGreen

    (@marteengreen)


    My Website: https://www.eshopgamers.com/

    A few days ago I switched to the Quik theme, and it auto-capitalizes the first letter in each post title.

    Example: “Nintendo EShop Downloads” I’d like to have that look like “Nintendo eShop Downloads” on the title. When I’m editing the post, I type it how I want it to look, but it keeps capitalizing the first letter in every post.

    How do I fix this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    You need a little tweak in your CSS file. Locate the below code in your css file and change text-transform property to none –

    h1, h2, h3, h4, h5, h6 {
    color: #111111;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
    padding: 0;
    text-transform: capitalize;
    }

    Like this:

    h1, h2, h3, h4, h5, h6 {
    color: #111111;
    font-weight: 700;
    line-height: 130%;
    margin: 0;
    padding: 0;
    text-transform: none;
    }

    Thread Starter MarteenGreen

    (@marteengreen)

    Thanks so much! Worked perfectly!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Every Post Title on My Site is Auto-Capitalized… How do I turn that off?’ is closed to new replies.