-
Anve S. replied to the question Login Page Background Image in the forum Boss. theme 8 years, 11 months ago
Hi @hjerryw,
Try adding following code in Theme’s functions.php
function my_login_logo() { ?>
<style type="text/css">
"ADD CSS CODE FOR APPLYING BACKGROUND IMAGE"
</style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );
This will add this css in head of login…[Read more]