We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Left or Center Align Registration Box on Desktop? | Forum

Topic location: Forum home » Development » Themes
Stara
Stara Dec 14 '19
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!
Marcus
Marcus Dec 14 '19
Pls share url
Oxwall Germany Club
Oxwall Germany Dec 14 '19
Topic was moved from General Questions.
Stara
Stara Dec 14 '19
polypatchwork.com is my site


polypatchwork.com/join is the page I need to fix

The Forum post is edited by Stara Dec 14 '19
David
David Dec 14 '19
Personal preference... if you're not going to use that space to the left... I would center it. Site looks good, by the way!
Darryl B Leader
Darryl B Dec 14 '19

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;
}

The Forum post is edited by Darryl B Dec 16 '19