hi,
i'm trying to move down the whole login-box for some pixels.
My custom CSS is currently:
#loginform {
margin-top:500px;
}
but this enlarges the complete page, too.
someone can help?
hi,
i'm trying to move down the whole login-box for some pixels.
My custom CSS is currently:
#loginform {
margin-top:500px;
}
but this enlarges the complete page, too.
someone can help?
got it... works with:
#login {
position:relative;
top:500px;
}You must log in to post.