diff --git a/theme/templates/base.html b/theme/templates/base.html
index 07784c42e21947d2380eadcd09ab01240da751ab..0c4beb26570250f7b15ba03cc111169f111c9935 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -49,9 +49,9 @@
 
 	{% block global_before %}
 		{%- if 'global_before' in config.theme -%}
-			<section id="globalbefore" class="globalsections">
+			<div id="globalbefore" class="globalsections">
 			{{ render.sections(config.theme.global_before, lang, 2) }}
-			</section>
+			</div>
 		{%- endif -%}
 	{% endblock global_before %}
 
@@ -66,9 +66,9 @@
 
 	{% block global_after %}
 		{%- if 'global_after' in config.theme -%}
-			<section id="globalafter" class="globalsections">
+			<div id="globalafter" class="globalsections">
 			{{ render.sections(config.theme.global_after, lang, 2) }}
-			</section>
+			</div>
 		{%- endif -%}
 	{% endblock global_after %}