diff --git a/theme/funkwhale/static/css/style.css b/theme/funkwhale/static/css/style.css
index 1a452b4c30c9b51fecfc82298b87e680ee3d50fa..504f0f27b1e28a57d6013dc896cefb80538f68dc 100644
--- a/theme/funkwhale/static/css/style.css
+++ b/theme/funkwhale/static/css/style.css
@@ -126,6 +126,7 @@ aside {
   text-align: center;
   padding-top: 8%;
   background-size: cover;
+  box-sizing: content-box;
 }
     aside a  { color:var(--color-background-main); text-decoration:none; }
     aside a:visited { color:var(--color-background-main); text-decoration:none; }
@@ -208,6 +209,10 @@ aside > h2 {
   margin: auto;
 }
 
+.logo-container h1 {
+  font-size: 21px;
+}
+
 /*--------Responsive------------*/
 
 @media (max-width: 800px) {
diff --git a/theme/funkwhale/templates/base.html b/theme/funkwhale/templates/base.html
index 5b429c449150079967f4fad889a2356e8659d1a7..b5c0123f90e6b4c21cfc601a8504c9ed871ee8cf 100644
--- a/theme/funkwhale/templates/base.html
+++ b/theme/funkwhale/templates/base.html
@@ -75,7 +75,7 @@
 
     {% if LINKS %}
         <h2 class="blog_roll_link">LINKS</h2>
-        <ul class="navbar">
+        <ul>
             {% for name, link in LINKS %}
                 <li><a href="{{ link }}">{{ name }}</a></li>
             {% endfor %}
@@ -84,7 +84,7 @@
 
     {% if DISPLAY_CATEGORIES_ON_MENU and categories %}
         <h2 class="blog_roll_link">Categories</h2>
-        <ul class="navbar">
+        <ul>
             {% for cat, null in categories %}
                 <li{% if cat == category %} class="active"{% endif %}><a
                         href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>