-
Paul replied to the question my login logofont text title is pacifico how do i change it in the forum Boss. theme 9 years, 7 months ago
@bigokilla You’re right, I misunderstood the question. Try adding this to your functions.php file in the Boss child theme:
function my_login_logo() { ?>
[Read more]
<style type="text/css">
.login h1 a {
font-family: 'Palatino Linotype' !important;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo'…