diff --git a/Changelog.md b/Changelog.md
index a4ccbed7d06277696bf67188d05f2bcb87e64508..9ef972d60b2be75bf0affa1b894cfb16a50a998a 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -6,7 +6,7 @@
 * Make the session cookies HttpOnly again [#7041](https://github.com/diaspora/diaspora/pull/7041)
 * Invalidate sessions with invalid CSRF tokens [#7050](https://github.com/diaspora/diaspora/pull/7050)
 * Liking a post will no longer update its interacted timestamp [#7030](https://github.com/diaspora/diaspora/pull/7030)
-* Improve W3C compliance [#7068](https://github.com/diaspora/diaspora/pull/7068) [#7082](https://github.com/diaspora/diaspora/pull/7082)
+* Improve W3C compliance [#7068](https://github.com/diaspora/diaspora/pull/7068) [#7082](https://github.com/diaspora/diaspora/pull/7082) [#7091](https://github.com/diaspora/diaspora/pull/7091)
 * Load jQuery in the head on mobile [#7086](https://github.com/diaspora/diaspora/pull/7086)
 
 ## Bug fixes
diff --git a/app/views/aspects/_aspect_stream.haml b/app/views/aspects/_aspect_stream.haml
index 62c4a481107e7bbf99a12ea2c4c1d033fea02829..7154d0f505ce706897afabd771db711c4c421291 100644
--- a/app/views/aspects/_aspect_stream.haml
+++ b/app/views/aspects/_aspect_stream.haml
@@ -14,7 +14,7 @@
   .stream#main_stream
 
 #paginate
-  %span.loader.hidden
+  .loader.hidden
     .spinner
 
 - if current_user.contacts.size < 2
diff --git a/app/views/contacts/index.html.haml b/app/views/contacts/index.html.haml
index 2a8de4f3265af6941543513f12cf5728e30c3730..dffe8db21dc925d99941858facfd0bdbd6d1c710 100644
--- a/app/views/contacts/index.html.haml
+++ b/app/views/contacts/index.html.haml
@@ -30,7 +30,7 @@
                 = t('invitations.new.invite_someone_to_join')
 
       #paginate
-        %span.loader.hidden
+        .loader.hidden
           .spinner
 
 -if @aspect
diff --git a/app/views/people/show.html.haml b/app/views/people/show.html.haml
index f1fe794ca805983a28cd91121c6e010adc9309c0..0eae5e336456296998b2716998fdaa35f4b1b4b1 100644
--- a/app/views/people/show.html.haml
+++ b/app/views/people/show.html.haml
@@ -27,7 +27,7 @@
           -# JS
 
         #paginate
-          %span.loader.hidden
+          .loader.hidden
             .spinner
 
       %a.entypo-chevron-up.back-to-top#back-to-top{title: "#{t('layouts.application.back_to_top')}", href: "#"}
diff --git a/app/views/tags/show.haml b/app/views/tags/show.haml
index 19e202a38f28a17abf46186c84b661a0d9c86d12..96539ecd0157106cc045187d7e5194547203c168 100644
--- a/app/views/tags/show.haml
+++ b/app/views/tags/show.haml
@@ -31,7 +31,7 @@
         #main_stream.stream
 
         #paginate
-          %span.loader.hidden
+          .loader.hidden
             .spinner
 
       %a.entypo-chevron-up.back-to-top#back-to-top{title: "#{t('layouts.application.back_to_top')}", href: "#"}