Is it possible to change the font style of h1 or h2 in Warp Style Customizer?
I don't find the appropriate spaces for change the font size and color...
Now I change it in custom.css with follow code:
Code:
/*** CAMBIO GRANDEZZA E COLORE CARATTERE H1 H2 H3 H4 H5 H6 PER I DEVICE***/
/* Small Screen */
@media (max-width: 768px) {
.uk-container {
padding: 10px 10px;
}
h1 {
font-size: 32px !important;
line-height: 1.3 !important;
color:#28A5F5 !important;
}
h2,
{
font-size: 28px !important;
line-height: 1.4 !important;
color:#28A5F5 !important;
}
}
/*** FINE CAMBIO GRANDEZZA E COLORE CARATTERE H1 H2 H3 H4 H5 H6 PER I DEVICE***/
/*** CAMBIO COLORE CARATTERE H1 H2 H3 H4 H5 H6 PER I DESKTOP***/
/* Headings
========================================================================== */
h1,
h2
{
margin: 0 0 15px 0;
font-family: 'Ubuntu';
font-weight: normal;
color: #28A5F5 !important;
text-transform: none;
}
/*** FINE CAMBIO COLORE CARATTERE H1 H2 H3 H4 H5 H6 PER I DESKTOP***/
Thanks!
Last edit: 7 years 5 months ago by
Ferriero.
Please Log in or Create an account to join the conversation.