BuddyBoss Home – Web › Support Forums › Solutions › Social Learner › Problem with custom login
- This topic has 9 replies, 5 contibutors, and was last updated 8 years, 8 months ago by Anonymous.
Question
January 18, 2016 at 10:27 pm #56606@randall-leagueI’m trying to create my custom login using Boss’s intergrated WP login theme. I have set my logo but the website title still displays over the logo. The website title is “Student Center”. How do I get rid of that?
Answers
January 19, 2016 at 8:12 am #56645@
AnonymousHi @randall-league, Please let me know if you are using any login styling third party plugin and paste your website url to inspect the issues.
Regards
January 20, 2016 at 6:50 am #56723@stingray309Hi Pallavi
I have the same issue…and I’m using s2mmember for the login. Its the same URL that you helped me with before. I have the latest themes added too. Can you take a peak at my site and let me know what you find?
Jim
January 22, 2016 at 8:15 am #56882@
AnonymousHi @stingray309, If you are using s2Member then just ‘Select Default view instead of Customize with s2Member’ in the option in s2member > General setting > Login/Registration Page
Regards
January 22, 2016 at 10:30 am #56890@stingray309Hi
Funny how easy some of the fixes are. That worked…:)
Thank you!
Jim
January 25, 2016 at 1:08 am #57077@
Anonymous@stingray309 Glad to hear that worked 🙂
January 28, 2016 at 1:33 am #57389@randall-leagueIs there a way to use an image as a background?
Before I used the
Wordpress Login Theme plugin and could do it but I don’t see the option in Social Learner.January 28, 2016 at 8:11 am #57422@
AnonymousHi @randall-league, Please use this css to add background image (replace the image url with your image).
body.login { background-image: url('login-bg.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-position: center; }
Regards
March 14, 2016 at 5:47 pm #63002@hjerrywHello,
I also wanted to add a background image to the login screen. But nothing happens as I added the code you have mentioned above. Please see the attachment. Is there anything wrong?
ThanksMarch 17, 2016 at 12:12 pm #63656@
AnonymousHi @hjerryw
Custom css will not work for login page.
You will need to add functions for it.function bb_login_custom() { ?> <style type="text/css"> body.login { background-image: url('login-bg.jpg'); background-repeat: no-repeat; background-attachment: fixed; background-position: center; } </style> <?php } add_action( 'login_enqueue_scripts', 'bb_login_custom' );
You can add like above and replace login-bg.jpg with your image url full path
add above code inside functions.php of the child theme.
For further details you can check
https://codex.wordpress.org/Customizing_the_Login_Form
Regards
Varun Dubey
- The question ‘Problem with custom login’ is closed to new replies.