• Resolved carbos6

    (@carbos6)


    Building a new site and every word on the site defaults starting with an uppercase letter. I’m sure there’s a setting I have wrong, but I haven’t been able to locate it.
    Can someone share the solution? Thank you!

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • You’ve got the body set to have text-transform set to Capitalize.

    body, button, input, select, textarea {
        font-family: 'Karla',sans-serif;
        font-weight: 700;
        font-size: 1rem;
        text-transform: capitalize;
    }

    Which will capitalize the first letter of all of the words within the body. Change it to inherit or none or something else.

    • This reply was modified 5 years, 9 months ago by Amanda K..

    You probably might be able to fix this in Elementor but there’s this in your CSS code. See the last directive called ‘text-trnsform’? That’s set to capitalize… you need to ‘rem’ it out.

    You can find this using your ‘inspector’ in your Chrome browser if you have it.

    body, button, input, select, textarea {
        font-family: 'Karla',sans-serif;
        font-weight: 700;
        font-size: 15px;
        font-size: 1rem;
        text-transform: capitalize;
    }

    Or just add this code to your additional CSS

    body, button, input, select, textarea {
        font-family: 'Karla',sans-serif;
        font-weight: 700;
        font-size: 15px;
        font-size: 1rem;
        /* text-transform: capitalize; */
    }

    Keep in mind that further along in the code most of the above is overwritten by the next cascade of CSS statements.

    You can actually use the CSS inspector mentioned above to toggle that on or off and even tweak it further if you wish though on text-transform your choices are limited to uppercase, lowercase and capitalize. Bear in mind that this is only during inspector sessions but you can cut that code when you’re finished and paste it to your working CSS file.

    • This reply was modified 5 years, 9 months ago by JNashHawkins.
    • This reply was modified 5 years, 9 months ago by JNashHawkins.
    Thread Starter carbos6

    (@carbos6)

    Thank you for the replies. Problem fixed.

    its your CSS file

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Every Word Starts With Upper Case’ is closed to new replies.