Hi, Cristina!
You are right, that can be the problem.
I think the better solution for the breadcrumb is to set the Font of the breadcrumb title smaller.
If you increase the breadcrumb height, Breadcrumb will cover the screen more.
Here is the code you can try to set the font smaller on the screens smaller than 992px: (Insert it into Customizing->General->Additional CSS:)
@media only screen and (max-width: 992px) {
.vision-page-title-bar h1 {
font-size:4vw!important;
margin-bottom: 15px!important;
}
}
Anyway, if you want to try to change the breadcrumb bar height, insert the following codes instead of the previous code:
@media only screen and (max-width: 992px) {
.vision-page-title-bar {
height: 120px!important;
}
.vision-page-title-captions {
padding-bottom: 40px!important;
}
}
Regards