Tagged: Fonts
HI there,
I want to use an alternative Google font which is not listed admin options – is there a way to add Ropa Sans to the list or do I need to put some custom CSS.
Hi,
Edit admin > includes > register-admin-options.php, find this code on line 277.
'Yellowtail'=>'Yellowtail',
Below, add this code.
'Ropa Sans'=>'Ropa Sans',
Go to Theme Options > Styling > Heading Font, select Ropa Sans.
You can apply the font on your custom.css.
h1, h2, h3, h4, h5, h6, p {
font-family: "Ropa Sans", Times New Roman, Helvetica, Arial, sans-serif;
}
Regards,
Ismael
Thanks – fixed