diff --git a/uniweb/templates/uniweb/base.html b/uniweb/templates/uniweb/base.html
index 5d528a4704805759a5e3a6767a5d12df66b822b5..bc37667b70560322284db2ab7a6e96e4ee1a14ea 100644
--- a/uniweb/templates/uniweb/base.html
+++ b/uniweb/templates/uniweb/base.html
@@ -30,6 +30,12 @@
       background-position: 0 0;
       padding: 0 0 1em 35px !important;
     }
+    .content-block a {
+      color: #004958;
+    }
+    .text-white a {
+      color: #FFFFFF;
+    }
   </style>
 
   {% if page.root_page.matomo_id %}
diff --git a/uniweb/templates/uniweb/blocks/table.html b/uniweb/templates/uniweb/blocks/table.html
index 3f2b07f01390c7a703736b0341f50f754879eb35..6f57537eba1ff53795794bf09150b4482ed39605 100644
--- a/uniweb/templates/uniweb/blocks/table.html
+++ b/uniweb/templates/uniweb/blocks/table.html
@@ -1,7 +1,7 @@
-{% load table_block_tags %}
+{% load table_block_tags shared_filters %}
 
 <div class="my-6">
-  <table class="table table--bordered table--condensed mx-auto">
+  <table class="table table--bordered mx-auto content-block">
     {% if table_caption %}
        <caption class="head-heavy-sm my-4">{{ table_caption }}</caption>
     {% endif %}
@@ -12,11 +12,7 @@
             {% with forloop.counter0 as col_index %}
                 <th scope="col" {% cell_classname 0 col_index %}>
                     {% if column.strip %}
-                        {% if html_renderer %}
-                            {{ column.strip|safe|linebreaksbr }}
-                        {% else %}
-                            {{ column.strip|linebreaksbr }}
-                        {% endif %}
+                        {{ column.strip|markdown }}
                     {% endif %}
                 </th>
             {% endwith %}
@@ -33,21 +29,13 @@
                 {% if first_col_is_header and forloop.first %}
                     <th scope="row" {% cell_classname row_index col_index table_header %}>
                         {% if column.strip %}
-                            {% if html_renderer %}
-                                {{ column.strip|safe|linebreaksbr }}
-                            {% else %}
-                                {{ column.strip|linebreaksbr }}
-                            {% endif %}
+                            {{ column.strip|markdown }}
                         {% endif %}
                     </th>
                  {% else %}
                     <td {% cell_classname row_index col_index table_header %}>
                         {% if column.strip %}
-                            {% if html_renderer %}
-                                {{ column.strip|safe|linebreaksbr }}
-                            {% else %}
-                                {{ column.strip|linebreaksbr }}
-                            {% endif %}
+                            {{ column.strip|markdown }}
                         {% endif %}
                     </td>
                  {% endif %}