Hi!
I’m trying to change the font of heading titles. Please can you help me, where I can do that?
Thank You!
Kind regards,
Nezsu
Hi!
I’m trying to change the font of heading titles. Please can you help me, where I can do that?
Thank You!
Kind regards,
Nezsu
Hi @nezsu,
You could do this by copy paste this css code into Appeareance> Customize> Additional Css:
.front-page-section .section-header h3 {
color: #000;
font-size:15px;
}
Change the above values with your own values as you wish.
Thanks,
Cristian
Thanks a lot!
What about the main title (the one with the dots)?
And how can I change the colour of the header button two when hovering (it’s yellow)?
Please could you help me with these, as well?
Thank you!
Kind regards,
Nezsu
Hello
For the main title you can use :
#header .bottom-header h2 { font-family: "Open Sans" }
In order to change the second button’s color use this:
#header .bottom-header .header-button-two:hover {
background: rgba(241, 210, 4, 0.9);
}
Thanks,
George.