- Posts: 424
- Thank you received: 11
Collaps filters on 900px screens
- BluepointWebdesign
-
Topic Author
- Offline
Less
More
1 year 5 months ago #366616
by BluepointWebdesign
Collaps filters on 900px screens was created by BluepointWebdesign
-- url of the page with the problem -- :
denb.nl/printer-rouwkaarten
-- HikaShop version -- : 5.1.5
-- Joomla version -- : 5.2.5
-- PHP version -- : 8.1
Hello,
The filters are set for screens with a width below 800px to automatically collapsed. How/where can we set this to 900px?
Best Regards,
Michiel
-- HikaShop version -- : 5.1.5
-- Joomla version -- : 5.2.5
-- PHP version -- : 8.1
Hello,
The filters are set for screens with a width below 800px to automatically collapsed. How/where can we set this to 900px?
Best Regards,
Michiel
Please Log in or Create an account to join the conversation.
1 year 5 months ago #366618
by nicolas
Replied by nicolas on topic Collaps filters on 900px screens
Hi,
This is controlled with this CSS code:
in the file media/com_hikashop/css/hikashop.css
So you can add such CSS code:
in your Joomla template CSS to override it.
This is controlled with this CSS code:
Code:
@media only screen and (max-width: 800px) {
.hikashop_filter_collapsable_title_mobile {
display: block;
}
.hikashop_filter_fieldset_mobile h3 {
display: none;
}
div.hikashop_filter_collapsable_content_mobile {
display: none;
}
}
So you can add such CSS code:
Code:
@media only screen and (max-width: 900px) {
.hikashop_filter_collapsable_title_mobile {
display: block !important;
}
.hikashop_filter_fieldset_mobile h3 {
display: none !important;
}
div.hikashop_filter_collapsable_content_mobile {
display: none !important;
}
}
Please Log in or Create an account to join the conversation.
Time to create page: 0.204 seconds