diff --git a/css/components/footer.css b/css/components/footer.css
index 7e17244..82e95af 100755
--- a/css/components/footer.css
+++ b/css/components/footer.css
@@ -84,9 +84,13 @@ footer.site-footer .block {
.lmmi_logo {
margin-bottom: 1em;
}
+@media ((min-width:700px)) {
.lmmi_logo,
.upei_logo,
.social_icons {
padding-right: 4em;
}
+
+}
+
diff --git a/templates/views/views-view-fields--solr-search-content.html.twig b/templates/views/views-view-fields--solr-search-content.html.twig
index 6708bb8..5d87e67 100755
--- a/templates/views/views-view-fields--solr-search-content.html.twig
+++ b/templates/views/views-view-fields--solr-search-content.html.twig
@@ -1,23 +1,25 @@
-{% for field in fields -%}
+ {% for field in fields -%}
{{ field.separator }}
{%- if field.wrapper_element -%}
- <{{ field.wrapper_element }}{{ field.wrapper_attributes }}>
- {%- endif %}
- {%- if field.label -%}
+ <{{ field.wrapper_element }}{{ field.wrapper_attributes }}>
+ {%- endif %}
+ {# {%- if field.label -%} #}
+ {%- if field.label and field.content|striptags|trim is not empty -%}
{%- if field.label_element -%}
- <{{ field.label_element }}{{ field.label_attributes }}>{{ field.label }}{{ field.label_suffix }}{{ field.label_element }}>
+ <{{ field.label_element }}{{ field.label_attributes }}>{{ field.label }}{{ field.label_suffix }}{{
+ field.label_element }}>
{%- else -%}
- {{ field.label }}{{ field.label_suffix }}
+ {{ field.label }}{{ field.label_suffix }}
{%- endif %}
- {%- endif %}
- {%- if field.element_type -%}
+ {%- endif %}
+ {%- if field.element_type -%}
<{{ field.element_type }}{{ field.element_attributes }}>{{ field.content }}{{ field.element_type }}>
- {%- else -%}
+ {%- else -%}
{{ field.content }}
+ {%- endif %}
+ {%- if field.wrapper_element -%}
+ {{ field.wrapper_element }}>
{%- endif %}
- {%- if field.wrapper_element -%}
- {{ field.wrapper_element }}>
- {%- endif %}
-{%- endfor %}
+ {%- endfor %}