This topic has 2 replies, 2 voices, and was last updated 6 years, 3 months ago ago by Rose Tyler
We have over 50 brands and would like to list them in a dropdown using your “8theme Brands Filter” widget. Not in a menu, but in the sidebar.
Currently your widget has no capability for that setting. You can look at the standard Woocommerce widget “Filter Products by Attribute” to see that is shows the ability to display the results by “Dropdown” or “List
Hello,
Your query requests additional customization in files.
What about scrollbar for Brands? http://i.prntscr.com/kWpxheutTS_QiVnTzULuAg.png
Try to add this code in Theme Options > Custom css:
.etheme_widget_brands > ul {
max-height: 200px;
overflow-y: auto;
overflow-x: hidden;
}
.etheme_widget_brands > ul::-webkit-scrollbar {
width: 3px;
background: #e1e1e1;
}
.etheme_widget_brands > ul::-webkit-scrollbar-thumb {
background: #555;
border-radius: 3px;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up