diff --git a/scipost_django/series/templates/series/collection_detail.html b/scipost_django/series/templates/series/collection_detail.html
index d0a7395c103b8c9da9ccbf1096978fdc832a52d8..0811be7e2a207658f50f69d1aa9d8dcb1515ddfc 100644
--- a/scipost_django/series/templates/series/collection_detail.html
+++ b/scipost_django/series/templates/series/collection_detail.html
@@ -55,7 +55,7 @@
       {% endif %}
       {% if collection.image %}
 	<div class="p-2">
-	  <img class="d-flex me-3 p-2" style="max-width: 100%;" alt="image" src="{{ collection.image.url }}">
+	  <img class="d-flex me-3 p-2" style="max-height: 350px; max-width: 100%;" alt="image" src="{{ collection.image.url }}">
 	</div>
       {% endif %}
     </div>
diff --git a/scipost_django/series/templates/series/series_detail.html b/scipost_django/series/templates/series/series_detail.html
index ecb678024a5c0194cffceeac965d08b1c08d9883..f24d7bf4ad4238babdb9494ab7a03796216e666e 100644
--- a/scipost_django/series/templates/series/series_detail.html
+++ b/scipost_django/series/templates/series/series_detail.html
@@ -38,7 +38,7 @@
       </ul>
       <div class="p-2">
 	{% if series.image %}
-	  <img class="d-flex me-3" alt="series image" src="{{ series.image.url }}">
+	  <img class="d-flex me-3" style="max-height: 350px; max-width: 100%;" alt="series image" src="{{ series.image.url }}">
 	{% endif %}
       </div>
     </div>