<style>
.ow_menu_wrap{
display: none;
}
.ow_logo_wrap{
display: none;
}
.ow_site_panel{
display: none;
}
.ow_sidebar{
display: none;
}
.ow_footer_menu{
display: none;
}
.ow_content,
.ow_footer
{
width: 500px;
}
</style>
This can be done via general css styles in the theme customizer:
.ow.base_user_join .ow_footer_menu, .ow.base_user_join .ow_menu_wrap,.ow.base_user_join .ow_console_body,.ow.base_user_join .ow_logo,.ow.base_user_join .ow_site_panel{display: none!important}
after that you won't need to center anything and your changes won't be overwritten.
First of all, your changes will be overwritten while next update of the software, we do not recommend to do that directly in the core files.now ross thats a way cool answer
This can be done via general css styles in the theme customizer:
.ow.base_user_join .ow_footer_menu, .ow.base_user_join .ow_menu_wrap,.ow.base_user_join .ow_console_body,.ow.base_user_join .ow_logo,.ow.base_user_join .ow_site_panel{display: none!important}
after that you won't need to center anything and your changes won't be overwritten.