Full width by default

Hi,
is there any way to set full width by default for all users?

There is no setting for that.
You can overwrite the default value to full-width by changing Frappe source code.

See here for a reference.

This will set full width by default.

$(document).ready(function() {
    let fullwidth = JSON.parse(localStorage.container_fullwidth || "true");
    localStorage.container_fullwidth = fullwidth;
    $(document.body).toggleClass("full-width", fullwidth);
});
1 Like