diff --git a/themes/finc/scss/_customVariables.scss b/themes/finc/scss/_customVariables.scss
index c87c1903ba09bdec874a8332d36b5858505eb43f..07c48677a274933ee910950b39ecba33bea80d03 100644
--- a/themes/finc/scss/_customVariables.scss
+++ b/themes/finc/scss/_customVariables.scss
@@ -10,7 +10,7 @@
 // Import parent theme variables to have them all available here
 // @import '../../bootstrap3/scss/vendor/bootstrap/variables';
 @import '../../bootstrap3/scss/vendor/font-awesome/variables';
-
+@import 'components/functions';
 @import 'customFonts';
 
 
diff --git a/themes/finc/scss/components/_result-list.scss b/themes/finc/scss/components/_result-list.scss
index 81e273f2d7db237dd507d84d63010105a84144cd..04d396e899e861f345c8499cde78df55a1e27e48 100644
--- a/themes/finc/scss/components/_result-list.scss
+++ b/themes/finc/scss/components/_result-list.scss
@@ -8,7 +8,8 @@
 // *****************************************************************
 
 // re-define header for records in list of result, #19396
-header {
+.record header,
+.result header {
   background-color: transparent;
   width: auto;
 }
diff --git a/themes/finc/scss/finc.scss b/themes/finc/scss/finc.scss
index d0a058160466211b5307ba4da23eb3d0e879a027..4b04d5ac2638217f130a2d49c5542f4fac3918cc 100644
--- a/themes/finc/scss/finc.scss
+++ b/themes/finc/scss/finc.scss
@@ -6,7 +6,6 @@
 // *****************************************************************
 
 // Make sure imports are grouped correctly so variables can be loaded!
-@import 'components/functions';
 @import 'customVariables';
 
 // Import Bootstrap here
diff --git a/themes/finc/templates/search/searchbox.phtml b/themes/finc/templates/search/searchbox.phtml
index 5a34b3543f1057d51ea7dcad1469637986aef0e0..00d2ffcbdae411d7afe90ff0d27b69dcc6293076 100644
--- a/themes/finc/templates/search/searchbox.phtml
+++ b/themes/finc/templates/search/searchbox.phtml
@@ -29,8 +29,7 @@
     $hiddenFilterParams = $this->searchTabs()->getCurrentHiddenFilterParams($this->searchClassId, $ignoreHiddenFilterMemory, '?');
     
     /* finc: Don't load active filters here but above search results
-     * uncommend following block and upcoming linked filter templates for displaying filter in header */
-    /*
+     * reuse following php block and uncommend upcoming linked filter templates for displaying filter in header */
     if (!isset($this->filterList) || !isset($this->checkboxFilters)) {
         $params = $this->searchMemory()->getLastSearchParams($this->searchClassId);
         $filterList = $params->getFilterList(true);
@@ -41,7 +40,6 @@
     }
     $filterDetails = $this->searchbox()->getFilterDetails($filterList, $checkboxFilters);
     $showFilters = $filterDetails && (isset($results) || $options->getRetainFilterSetting());
-    */
 ?>
 <?php $tabConfig = $this->searchTabs()->getTabConfig($this->searchClassId, $this->lookfor, $this->searchIndex, $this->searchType, $hiddenFilters); ?>
 <?php if ($this->searchType == 'advanced'): ?>