Hej Genius’
Wondering if any of you might know how I move the text links below the login page form into the form box itself. See image demonstrating what I mean. The problem is that when you have a background image the important links get lost and need to be seen! It is easily seen here because the picture at that point is dark but when it becomes responsive for smaller devices the background colours will change and the text is hard to see. Clients have many differing background images so this is my best way to solve the problem
Thanks guys :-)
Hi Annemarie!
Pleaes try adding following code to Functions.php file in Appearance > Editor
function login_text_position() { ?>
<style type="text/css">
p#nav {
position: relative; top: -20px;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'login_text_position' );
If that does not help, please post the link to your website
Best regards,
Yigit
PERFECT! Had to adjust the -20px to -60px to position it a little higher up but the script worked perfectly. Thanks Yigit!!