AI Search
Classic Search
Notifications
Clear all
Sep 11, 2018 3:25 pm
I am trying to resize the register button and center it and text "After registration you will receive an email confirmation with a link to set a new password" to the page directly under the other fields. I set the button to 20% in custom css but it did not scale well on mobile screens so I removed the code. I can recreate the text and FA icon using the custom fields and center it if it is easier to just make the original one display:none.
7 Replies
Sep 11, 2018 5:31 pm
Hi A_Goer,
To center the "After registration you will receive an email confirmation with a link to set a new password" element use the following code.
#wpforo #wpforo-wrap .wpfw-1{
text-align: center;
}
To resize the registration button, use the following code for desktop:
#wpforo #wpforo-wrap .wpforo-register-wrap .wpf-field.wpf-field-type-submit input[type="submit"]{
width: 20%;
}
For mobile use the following one :
@media screen and (max-width: 800px)
#wpforo #wpforo-wrap .wpforo-register-wrap .wpf-field.wpf-field-type-submit input[type="submit"] {
width: 100% !important;
}
Sep 15, 2018 10:17 am
Page 1 / 2
Next




