diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 3f8ab898b573438cda321888fa8f70ccc7e483d3..133d80d32971949ad4ca03f41e9a36f79daca7e5 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -34,6 +34,7 @@ Fixed
 * The data check results list view didn't work if a related object had been deleted in the meanwhile.
 * Socialaccount login template was not overriden
 * Atomic transactions now cause only one Haystack update task to run
+* Too long headlines didn't break in another line.
 
 Changed
 ~~~~~~~
diff --git a/aleksis/core/static/public/style.scss b/aleksis/core/static/public/style.scss
index cb59138727e2a9345fb4295261a4393414d0aade..00f88f58bbc8e1668d3b6625f1da33b0a9a30972 100644
--- a/aleksis/core/static/public/style.scss
+++ b/aleksis/core/static/public/style.scss
@@ -297,6 +297,11 @@ h2 {
   font-size: 3.0rem;
 }
 
+p, h1, h2, h3, h4, h5, h6 {
+  overflow-wrap: break-word;
+  hyphens: auto;
+}
+
 /* Collections */
 
 ul.collection .collection-item .title {