-- HikaShop version -- : 2.6.0
I have spent 2 days not trying to make the filter module to show narrower.
I have tried everything, reading the docs and forum, purchased the style pack.  every bit of css I can find.
I have been able to make everything narrower, except the filter selection boxes are wider than the container.
I have been trying to use the id of the specific selection box,  but I cannot.. In firebug the ID looks like this
<select id="filter_Category_module_113[]" name="filter_Category[]"
Why are the brackets in the ID?  [ ]
I think the brackets are preventing the css to target the select box.
I have tried this css
#filter_text_Item_Number {
	width: 160px;
    margin-bottom:10px;}	
	
#filter_Category_module_113[]{
	width: 100px;
    margin-bottom:10px;}
#slider_Price_module_113{
    margin-top: 30px !important;
    width: 100px !important;
  }
The text item and the price both are sized but the select is not.
I try removing the brackets from the css and it still does not work