Hi, how can I remove the breadcrumbs only for mobile devices?
Hey DROR,
You can use this code to hide the breadcrumb on mobile devices – add it to the child theme style.css file or to the quick css field:
@media only screen and (max-width: 767px){
#top #wrap_all .breadcrumb {
display: none;
}
}
If you want to hide the breadcrumb on tablets you can replace 767px with a higher value like 1024px.
Best regards,
Dude
Thanks, how can I also remove the title? I don’t any part of the breadcrubms showing on mobile.
Hi bakbek,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.container_wrap.title_container {
display: none;
}
}
If you need further assistance please let us know.
Best regards,
Victoria