Hi everyone,
I want to hide left filters on my site, and I don´t know how.
This is my site: https://eltemplodelamoda.com/collections/nueva-coleccion-octubre-2022
Thanks everyone.
Hi everyone,
I want to hide left filters on my site, and I don´t know how.
This is my site: https://eltemplodelamoda.com/collections/nueva-coleccion-octubre-2022
Thanks everyone.
Hi @arbeygp ,
You can try this code
#collection-template .main-col{
width:100%;
}
#collection-template .sidebar {
display:none;
}
Hi bro, it works partially, hide on desktop, but on mobile continues showing the filter button:
and this lines at the end:
Thanks my friend.
Hi @arbeygp
That part can not be removed with CSS.
You can find in your theme files where it has the dashes and remove them manually
Hope that helps!
Hi @arbeygp for the dots at bottom please open up the collection template file there you will find them al last typed by mistake.
if you want to hide just the filter button use this code.
.btn.btn-filter.large-up--hide {
display:none;
}
if you want to hide the filter button and the buttons below of it then use the below code
@media only screen and (max-width: 768px){
.filters-toolbar{
display:none;
}
}
Bro it works perfectly, thanks for your help and knowledge.