Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1126833

    Hi,

    i would like to change my fonts styles to:
    H1
    font-size: 25px;
    text-transform: none;
    line-height: 35px;

    and
    H2, H3
    font-size: 18px;
    line-height: 30px;
    text-transform: none;

    What do i need to add for that and where can i add this?

    kind regards Jak

    #1126877

    Hey Jak73,

    Add this to quick css:

    H2, H3{
    font-size: 18px;
    line-height: 30px;
    text-transform: none;
    }
    
    H1{
    font-size: 25px;
    text-transform: none;
    line-height: 35px;
    }

    Best regards,
    Jordan Shannon

    #1126904

    Hi Shannon,

    thanks!
    Unfortunetly the text-trasform does not work. Letters are still big like ABC instead of Abc?

    Kind regards Jak

    #1126977

    Hi,

    Change text transform to “normal!important;”

    Best regards,
    Jordan Shannon

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.