Okay
  Public Ticket #1484407
Uppercase on title and subtitles
Closed

Comments

  •  1
    Gianluca started the conversation

    Hi!

    Default settings bring me uppercase on every first letter of h1, h2, h3...elements. How I can de-activate this option?

  •  8,468
    Tahir replied

    Hey Again,

    Please provide the page url so that i can write up the custom css for whats possible.

    Thanks


    ThemeNectar Support Team 

  •  1
  •  8,468
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    h1, h2, h3, h4, h5, h6 {
        text-transform: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Gianluca replied

    Sorry, but something didn't worked :/

  •  2
    Oryan replied

    Greetings.

    I am not quite sure the question is understood. Are you wishing to capitalize all letters? Remove the capitalization of letters entirely (all lowercase) or capitalize only the first letter?

    Adding to what Tahir has suggested, please attempt the following:

    h1, h2, h3, h4, h5, h6 {    text-transform: uppercase!important;
    }

    This will force all headers to all caps.

    If you are, instead, attempting to force all to lowercase the syntax value changes:

    h1, h2, h3, h4, h5, h6 {    text-transform: lowercase!important;
    }
  •  1
    Gianluca replied

    I understood what the problem was.

    "i" selector was missing, because my h5 was <i>, so css code wrote me by Tahir, didn't worked :)