Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1166508

    Hello when i write an article, the titlle (H1 or H2) are in uppercase, is it possible to have in
    tiny uppercase please?
    We answer me : Hey OSLO2019,
    Try the following in quick css:
    h1,h2{
    text-transform:normal!important;
    }
    But it does not work when i place : h1,h2{ text-transform:normal!important; } in the CSS style

    #1166608

    Hey OSLO2019

    There is no such thing like text-transform:normal which is why it does not work.

    You can use the following code in order to get it normal case:

    h1, h2 {
    text-transform: none !important;
    }

    Cheers
    Michael

    #1166678

    Hi,

    Thanks for sharing and for helping out @michaelh :-)

    Best regards,
    Rikard

    #1166895

    Thanks Mickael :-)
    It’s works

    #1166959

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Uppercase of H1 and H2 H3 H4 H5 H6’ is closed to new replies.