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
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
Hi Shannon,
thanks!
Unfortunetly the text-trasform does not work. Letters are still big like ABC instead of Abc?
Kind regards Jak
Hi,
Change text transform to “normal!important;”
Best regards,
Jordan Shannon