Tagged: CSS
Hi support-team,
is there a way to change the font-family (or more css) for just one special page?
Thanks for helping
Hey!
Yes, there are various way to do that:
1. Adding this Quick CSS (change xx by Page ID):
body.page-id-xx{
font-family: "Verdana" !important;
}
2. Adding a Code Block element to the Page (if using Advanced Layout Builder) with the following content:
<style>
body{
font-family: "Verdana" !important;
}
</style>
Cheers!
Josue
Thank you very much Josue.
Perfect support, as ever :-)