Hello,
In order to have required filer entries in different container, more specifically your have 2 container :
1. On the top, the module with the Html Id :
#hikashop_filter_main_div_module_143
2. The filter inside your product listing with the Html Id :
#hikashop_filter_main_div_hikashop_category_information_menu_1476
From this, you will be able to "targeted" the required elements in order to choose to hide (or not) for each case :
With :
.hikashop_filter_ZoekopProductCode_1 {display: none;}
=> Both will be hide
With :
#hikashop_filter_main_div_hikashop_category_information_menu_1476 .hikashop_filter_main.hikashop_filter_main_ZoekopProductCode_1 {
display: none;
}
=> Only in the product listing.
For the width, we process a little like previous :
With the same container id and by targeting the "
select" :
#hikashop_filter_main_div_hikashop_category_information_menu_1476 select {
width: 195px;
}
Hope this will help you to achieved your display.
Regards