Hey, how can I change the family font of my specific page? Can someone give me CSS for that?
I want to change the font on that page > https://l2p-league.com/lol-solo-coaching/
Hey buciks1,
You can use the following:
.page-id-2034 h1.av-special-heading-tag {
font-family:Helvetica,Arial,sans-serif!important;
}
Adjust the font to what you need.
Best regards,
Jordan Shannon
Thanks mate. Can you also give me CSS for the whole text on a specific page?
Hi,
If its for the same page, you can try the following:
.page-id-2034 p {
font-family:Helvetica,Arial,sans-serif!important;
}
Best regards,
Jordan Shannon
Can you also give me CSS for the text-weight? Same page.
Hi,
You can add that on to what I gave you:
.page-id-2034 p {
font-family:Helvetica,Arial,sans-serif!important;
font-weight:bold!important;
}
Best regards,
Jordan Shannon
It”s not working.
Hi,
Did you add the code to the very top of quick css so it runs first? Also, clear the cache a few time over.
Best regards,
Jordan Shannon