Quote:
Originally Posted by bhalkum
Works fine on 5.0.5, except the image covers the submit button on the registration page.
|
You could move the registration button to the left side:
Code:
.action-buttons {
text-align: left;
}
I suspect people are having issue with smaller screen sizes. To not display the image on screens smaller than 600px:
Code:
@media only screen and (max-width: 600px) {
div.forcetoregister {display: none;}
}