• Hi, I am facing issues regarding WordPress text capitalization!
    Idk, if it is a theme issue or a WordPress problem?
    Please suggest something if you guys can help!

    Whenever I type something the first letter of the word automatically becomes capital.

    • This topic was modified 3 years, 10 months ago by arunmaurya25.

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

Viewing 1 replies (of 1 total)
  • Hi, arunmaurya25, your theme, OceanWP, has a CSS style rule that makes the text capitalized:

    /* Typography CSS */
    
    body {
          font-family: Poppins;
           font-size: 13px;
           line-height: 1.5;
           letter-spacing: .5px;
           text-transform: capitalize;          
         }     

    You could override this using the following CSS:

    body {
        text-transform: initial !important;
    }
    • This reply was modified 3 years, 10 months ago by Ian Sackofwits. Reason: fixed code formatting
Viewing 1 replies (of 1 total)
  • The topic ‘WordPress capital text issue?’ is closed to new replies.