Hello, how can I correct the vehicle brand model filter on my website’s interface? I want to get a view like the one in the picture.
I have attached the pictures as my website and sample website.
A Shopify store owner seeks help creating a vehicle brand/model filter for their homepage, similar to a reference example they provided. They shared their store URL (pawauto.com) and a sample site (omacshop.com) for comparison.
Solution Provided:
Current Issue:
Next Steps:
Hello, how can I correct the vehicle brand model filter on my website’s interface? I want to get a view like the one in the picture.
I have attached the pictures as my website and sample website.
Could you please share you store’s URL?
Hey @canem34
Welcome to Shopify Community.
Some themes do offer this. You can buy them. Or if you don’t want to buy this needs to be custom coded, thus you will need a developer.
Let me know if you need one.
Thanks
sample web site www.omacshop.com
how can we move forward on this issue.
Go to ‘Online Store’ → Theme → Edit Code
In the assets folder locate the file ‘styles.css’
At the end of the file paste this code
input.advanced.btn.auto-full-width {
background: #3761bf;
border: none;
border-radius: 5px;
height: 50px;
text-transform: uppercase;
color: rgba(255, 255, 255, 1);
font-weight: 600;
transition: background-color 0.35s ease-in-out;
}
input.advanced.btn.auto-full-width:hover {
background-color: #0134a7;
}
summary.styledSelect {
min-height: 50px;
border: 1px solid black;
border-radius: 5px;
font-weight: bold;
}
span.icon.icon-arrow-down {
color: black;
}
.content ul.unformatted.options li {
padding: 4px;
line-height: 40px;
cursor: pointer;
}
ul.options {
border-left: 3px solid #3761bf;
border-right: 3px solid #3761bf;
border-bottom: 3px solid #3761bf;
}
summary.styledSelect {
display: flex;
align-items: center;
}
.content ul.unformatted.options li button:hover {
color: white !important;
cursor: unset !important;
}
ul.options.unformatted li:hover {
background: #3761bf !important;
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%) !important;
}
ul.options.unformatted li:hover button {
font-weight: bold !important;
color: white !important;
}
ul.options.unformatted li button {
transition: color 0s !important;
}
ul.unformatted.options li.first:hover {
color: white !important;
cursor: unset !important;
}
ul.options.unformatted li {
transition: color 0s !important;
}
Thank you very much. It turned out very well. I am grateful to you. I have been working on this for a long time. I can receive your positive and negative criticisms for our site. If there is a better theme to recommend,
Thank you again sincerely. I have only one request. It only works when you hover over the text to select it in the menu. It does not work when you click on the other nasal area, which gives the impression that the filter is not working. Can we activate this by clicking anywhere on the entire line as in the picture?
Hey thanks for the response. For the hover problem. Was this problem occurring before the css changes? . If that’s the case you’ll probably need to add some javascript. So please try and remove the css that I’ve given you and check if the click only works when you click on the text.