Hi,
I'm sure I'm missing something very obvious here - I need to change the Brand module div so the height is auto, currently the html specifies the height as inline css:
<div style="height:100px;text-align:center;clear:both;" class="hikashop_category_image">
I'm not sure where in the files to alter this, please help? I understand that usually I would set the div height in the admin options for the content module, but I have left it blank and it is defaulting to 100px. I changed the height of hikashop_category_image in frontend.css to "auto !important", but that affects all instances of category images and I only want it to apply to the Brands listing module. Is there a way to apply a specific css suffix to these images?
Thanks,
Jen
Solution: just a simple css fix - applied class suffix 'brands' to my brands module, then added this to frontend.css:
.hikashop_module.brands div.hikashop_category_image{
height: auto !important;
}