diff --git a/shared/templates/styleguide2/includes/molecules/menus/carousel.html b/shared/templates/styleguide2/includes/molecules/menus/carousel.html
index 7f3c27a52bb0d68a64f51e22c09a9959eff08480..8d1d1a6b409de10d43d7efc015ed582cbc2f9798 100644
--- a/shared/templates/styleguide2/includes/molecules/menus/carousel.html
+++ b/shared/templates/styleguide2/includes/molecules/menus/carousel.html
@@ -6,9 +6,15 @@
     <{% if self.button_url %}a{% else %}div{% endif %}
       class="
         {% block wrapper_classes %}
-          block relative xl:h-screen h-[70vh]
+          block h-[700px] relative
         {% endblock %}
 
+        {% if not page.root_page.has_expanded_navbar %}
+          xl:h-screen
+        {% else %}
+          xl:h-[70vh]
+        {% endif %}
+
         {% if self.button_url %}group cursor-pointer{% endif %}
       "
 
diff --git a/shared/templates/styleguide2/includes/organisms/layout/navbar.html b/shared/templates/styleguide2/includes/organisms/layout/navbar.html
index 4b544250ab3e50cb69302c44c289e6fdb324a845..7d594d39dd040764b2e22ea31956804961e24cf3 100644
--- a/shared/templates/styleguide2/includes/organisms/layout/navbar.html
+++ b/shared/templates/styleguide2/includes/organisms/layout/navbar.html
@@ -15,7 +15,7 @@
     fixed left-0 top-[-1px] z-20 w-full duration-200 navbar
 
     {% if is_transparent and page.root_page.has_expanded_navbar %}
-      xl:sticky
+      xl:sticky sticky
     {% else %}
       xl:absolute
     {% endif %}