Hello,
You need to add code in the site custom CSS/JS option.
Go to customize > custom CSS/JS and paste the following code.
@media only screen and (max-width: 767px)
.site-breadcrumbs {
display: block;
}
Thank you for your prompt response ! unfortunately, when I copy the code, I have error message : “Expected LBRACE at Line 2, col 1.”
Please update the code.
Add this one
@media only screen and (max-width: 767px) {
.site-breadcrumbs {
display: block;
}
}
Great, it works, thank you very much !!
I have one last question, I just noticed that on some pages the breadcrumb is too long and it is cut … is there a solution?
thanks again
Hello,
You need to add two more line in the code. Please update the code with this one to show full breadcrumbs
@media only screen and (max-width: 767px) {
.site-breadcrumbs {
display: block;
white-space: unset;
overflow:visible;
}
}
it works, thanks for all !!