The registration box on desktop on my site is aligned to the right side.
How can I align this box and text to the left side or even center?
I am using the TWOO theme.
Thank you for any help!
polypatchwork.com/join is the page I need to fix
Here's you a quick, and easy solution. Just add this to your custom css section for the theme in the admin panel. You can align it left, center, or right just by changing the float. "none" on the float would be center. Of course, leave the !important intact to override other css. This is custom css that you won't find in your base css. This affects only the elements on the join page.
.base_user_join .ow_page.ow_bg_color.clearfix {
padding: 100px 15px 25px 15px;
}
.base_user_join .ow_superwide {
float: none;
}