• Can I change this? I want to write a post as usual: Capitalize the first letter of a sentence and leave all other letters as lowercase. How can I achieve it?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Mystery Themes

    (@mysterythemes)

    Hello @gp9759

    You can make all text first letter capitalize and other lowercase using css but making first letter only capitalize in whole sentence you need to do it by yourself. If you want to showcase what you write without any css effect then you can use the following code in additional CSS box in customizer:

    .single .entry-content {
    text-transform: none;
    }

    Thanks ??

    Thread Starter gp9759

    (@gp9759)

    Thank you very much @mysterythemes for your response! Let’s make it clear: I’m reffering to posts which are included to news portal widgets: NP slider, NP Blocks! In these posts, the first letter of each word is capitalized!
    How can I change now the following code, in additional CSS box in customizer ?

    .single .entry-content {
    text-transform: none;
    }

    Thank you in advance …

    Theme Author Mystery Themes

    (@mysterythemes)

    Hello @gp9759

    You can use the following code in additional CSS box in customizer:

    .np-post-title, .np-post-title a {
    text-transform: none !important;
    }

    Thanks ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘The first letter of each word is capitalized’ is closed to new replies.