Hi all,
I have a problem with the look&feel of registration page of my new site…
I used Newsmag Theme in my wordpress multisite istallation…
you can see exately the problem here
http://analisidelsangue.net/wp-signup.php
I’d like to have a page with the same dimension of header e footer…
do you have an idea how can I solve the problem you see?
thank you
alessandro fron italia
Hello,
You can use the following CSS code to adjust the size and center position:
@media (min-width:1024px){
.mu_register{
width:900px;
}
}
@media (min-width: 768px) and (max-width: 1022px){
.mu_register{
width:700px;
}
}
If you want to adjust the social icons as well:
.apsl-login-networks{
width:410px;
margin-left:auto;
margin-right:auto;
}
.apsl-login-new-text{
text-align:center;
}
result: http://screencast.com/t/djnFV61gsL4
Thank you!
Hi Bogdan, thank you for your reply.
How can I use / insert the code you suggested me?
Can I put it in “custom css” of my theme? or where? in which file?
I have another problem regarding the registration/login of user on bbpress and the theme I’m using…
for example.. if unlogged user try to login here
http://analisidelsangue.net/forums/topic/gammopatia-monoclonare-igg-k/
at the end of discussion clicking on “Log in/register” it appairs a black screen without any possibility to log in — Can I solve this problem in some way? thank you
alessandro
thank you very much for reply
Hi Bogdan,
I applied your suggestion but now I have a new problem…
if you see the hp of the site, right column, the widget box of login…
before the custom css was right… now the look&feel is wrong
before the social botton was one up and one down .. now they are on the same line..
http://analisidelsangue.net/
how can solve the problem?
thank you
a
Hi
Try this css, I’ve targeted only this page: http://analisidelsangue.net/wp-signup.php
@media (min-width:1024px){
.page-id-29 .mu_register{
width:900px;
}
}
@media (min-width: 768px) and (max-width: 1022px){
.page-id-29 .mu_register{
width:700px;
}
}
.page-id-29 .apsl-login-networks{
width:410px;
margin-left:auto;
margin-right:auto;
}
.page-id-29 .apsl-login-new-text{
text-align:center;
}
Thanks!
Hi,
it seems it works in all pages (forum, articles, pages etc..) but NO in home page of the site.
the home page of the site in this moment is a specific static page…
http://analisidelsangue.net/
I don’t understand why.. I have empty all cache of the site but problem persist…
any idea about it?
thnks a lot!
Hi
Try this css in theme panel > custom css, the result should be like here: http://screencast.com/t/wHhihENgW
.page-id-29 .widget .bbp-submit-wrapper{
width:282px;
}
.page-id-29 .apsl-login-networks, .theme-4 .apsl-icon-block.icon-twitter, .theme-4 .apsl-icon-block.icon-facebook{
width: 205px!important;
display:block
}
Thanks!