You should be able to disable registration in the ACP. That will still allow SSO.
Edit: previous discussion
https://community.nodebb.org/topic/11381/user-registration-only-with-sso
Hi,
I want to disable the resizer function in the Lavender theme.
Thanks.
Have you tried adding this as custom css?
.resizer {
display: none;
}
@julian that only hides the button, but by default, the site displays at 100%. I don't want that.
@limker I believe the default is fixed width, not full fluid 100% width, so by default all users should get the fixed width view.
If you want to force fixed width even on users who've toggled the fluid width option, you could add a bit of js to fix that up.
A more quick solution:
Change
.container-fluid {
.container-fixed();
}
to
.container-fluid {
.container;
}
in nodebb-theme-vanilla/less/bootstrap/grid.less