What is the default CSS for the H1, H2, H3, H4 and H5 tags? I am looking for the font-size, font-family, font weight etc.
Thank you,
Hey John,
You can see it in base.css file.
Default font is “HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif (in that order).
Default font-weight is 600 for h1-h6.
For other properties:
h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
h3 { font-size: 20px; line-height: 1.1em; margin-bottom: 8px; }
h4 { font-size: 18px; line-height: 1.1em; margin-bottom: 4px; }
h5 { font-size: 16px; line-height: 1.1em; }
h6 { font-size: 14px; line-height: 1.1em; }
Hope it helps.
Best regards,
Nikko