Change Login / Registration Form Background – UserPro Forums https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/feed/ Sat, 04 May 2024 05:23:46 +0000 https://bbpress.org/?v=2.6.2 en-US https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38075 <![CDATA[Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38075 Thu, 22 May 2014 14:20:23 +0000 Hey,

How do I change the background of the login/registration form page?

I am talking about the background of the ”Forgot your password?” section.
I have added a screenshot:

]]>
https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38076 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38076 Thu, 22 May 2014 14:21:31 +0000 https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38079 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38079 Thu, 22 May 2014 16:08:16 +0000 Hi K, this is the CSS that you will allow you to change the background image:

div.userpro-head, {
border-radius: 5px 5px 0 0;
background: #f5f5f5 url(img/pattern.png) repeat;
border-bottom: 1px solid #eee;
}

]]>
https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38092 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38092 Thu, 22 May 2014 18:32:59 +0000 admin This is a custom css question. peem answer is right; you may need to add the !important rule to force the change.

]]>
https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38439 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38439 Sun, 25 May 2014 18:49:57 +0000 Hi,

Thank you for your reply.
Where exactly can I find that code? I added it to the ”custom CSS” field, but it doesn’t work.

]]>
https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38440 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38440 Sun, 25 May 2014 18:51:31 +0000 Remove the comma after head and try this:

div.userpro-head {
border-radius: 5px 5px 0 0;
background: #f5f5f5 url(img/pattern.png) repeat;
border-bottom: 1px solid #eee;
}

]]>
https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38441 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38441 Sun, 25 May 2014 19:29:32 +0000 Thanks a lot! That worked :).

Another question (sorry to bother you… :p ):

Is it possible to change the background of the ”Profile” page as well? (Same background, but when you are already logged in).

]]>
https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38451 <![CDATA[Reply To: Change Login / Registration Form Background]]> https://forum.userproplugin.com/forums/topic/change-login-registration-form-background-2/#post-38451 Sun, 25 May 2014 21:15:34 +0000 Yes I think so try adding a comma then div.userpro-centered, so the css would look like this:

div.userpro-head, div.userpro-centered {
border-radius: 5px 5px 0 0;
background: #f5f5f5 url(img/pattern.png) repeat;
border-bottom: 1px solid #eee;
}

Let me know if that works

]]>