Hi,
My site has a problem with a link called ” Back to homepage ” which is overlapping with the website logo on the -forgot password- page.
Do you have a clue how to hide this link? I can’t find any css to remove it. If there is no css solution available, will it be possible to remove simply the website logo with a css code?
Thanks a lot for your support.
Regards
DanielHi Daniel,
I am sorry, i don’t see any way.Your logo is set as background on that element and if we hide it(display:none or visbility:hidden, your logo is hidden too.
You should contact the theme authors as this is not the default WordPress behaviour.
Regards
BrajeshHi Brajesh,
Thanks for your help! I would like to hide the logo and the overlapping link together but the CSS I am using don’t apply on that page at all, that’s very strange.
I have used:
body.login div#login h1 a { display: none; }
and as well I tried:
.login h1 { display: none }
but the CSS code doesn’t effect the page.
Do you have any solution to hide the logo and the overlapping link together to get rid of it?
Thank you for your assistance.
Regards
DanielHi Daniel,
your css is correct. You are probably putting it in additional css section of your customizer. That is not loaded on login page.You may use the following code to force it to be loaded on login screen
add_action( 'login_footer', function () { ?> <style type="text/css"> body.login div#login h1 a { display: none; } </style> <?php } );
Regards
BrajeshHi Daniel,
you can put it in the functions.php of your child theme.Regards
BrajeshHi Brajesh,
It worked that’s great 🙂
I figured out that due that users compare social media with the big ones like Facebook, Twitter etc. and when they recognize that a site is not as professional as the big players, then they don’t come back again.
Thank you!
Regards
DanielHi Daniel,
You are welcome.
Yes, you are right about the site experience.Regards
Brajesh
The topic ‘Remove overlapping link on -forgot password- page’ is closed to new replies.