diff --git a/apps/member/templates/member/profile_detail.html b/apps/member/templates/member/profile_detail.html
index 297af21ca4214fd7d1c08c59de98ad9d4aa0c983..3572819198d5a3625ab58709226ab26b02e35970 100644
--- a/apps/member/templates/member/profile_detail.html
+++ b/apps/member/templates/member/profile_detail.html
@@ -1,5 +1,8 @@
 {% extends "member/noteowner_detail.html" %}
 
+{# Use a fluid-width container #}
+{% block containertype %}container-fluid{% endblock %}
+
 {% block profile_info %}
 {% include "member/profile_info.html" %}
 {% endblock %}
diff --git a/apps/note/templates/note/conso_form.html b/apps/note/templates/note/conso_form.html
index 52c6b94f9adffb89735a17798fa28322c1a82dbc..29acb3de3af28d02993e30752cbc9642ce0edaad 100644
--- a/apps/note/templates/note/conso_form.html
+++ b/apps/note/templates/note/conso_form.html
@@ -5,6 +5,9 @@
 {# Remove page title #}
 {% block contenttitle %}{% endblock %}
 
+{# Use a fluid-width container #}
+{% block containertype %}container-fluid{% endblock %}
+
 {% block content %}
     <div class="row mt-4">
         <div class="col-sm-5 col-md-4" id="infos_div">
diff --git a/apps/wei/templates/wei/weiclub_detail.html b/apps/wei/templates/wei/weiclub_detail.html
index d0e8f8e90313e0201c2883f5e8b90a50ea669d02..f359933f56447a71536a4519620cfcfae2e1bc70 100644
--- a/apps/wei/templates/wei/weiclub_detail.html
+++ b/apps/wei/templates/wei/weiclub_detail.html
@@ -1,5 +1,8 @@
 {% extends "member/noteowner_detail.html" %}
 
+{# Use a fluid-width container #}
+{% block containertype %}container-fluid{% endblock %}
+
 {% block profile_info %}
 {% include "wei/weiclub_info.html" %}
 {% endblock %}
diff --git a/note_kfet/templates/base.html b/note_kfet/templates/base.html
index 461d9593f35044d290cbb6f8e0a0b359af32ee59..5e8d3d90309104f98c668edd63791f8ada8af8f5 100644
--- a/note_kfet/templates/base.html
+++ b/note_kfet/templates/base.html
@@ -72,6 +72,9 @@ SPDX-License-Identifier: GPL-3.0-or-later
         .bs-tooltip-bottom .arrow::before {
             border-bottom-color: rgba(0,0,0,.250);
         }
+        .container-fluid {
+            max-width: 1600px;
+        }
     </style>
 
     {% block extracss %}{% endblock %}
@@ -167,7 +170,7 @@ SPDX-License-Identifier: GPL-3.0-or-later
             </ul>
         </div>
     </nav>
-    <div class="{% block containertype %}container-fluid{% endblock %} my-3">
+    <div class="{% block containertype %}container{% endblock %} my-3">
         {% if request.user.is_authenticated and not request.user.profile.email_confirmed %}
             <div class="alert alert-warning">
                 {% trans "Your e-mail address is not validated. Please check your mail inbox and click on the validation link." %}