Tagged: breadcrumbs
Hi guys!
How do I change the breadcrumb border so it doesn’t cut into the words of the actual breadcrumb on mobile?
Right now the breadcrumb border is making a line through the text of the breadcrumb which looks messy and unprofessional.
Please view the site on mobile to see the breadcrumb issue.
Thank you in advance
Hey Courtney,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
@media only screen and (max-width: 430px) {
.title_container .breadcrumb {
right: 0px !important;
top: 30% !important;
}
#top .title_container .container {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
.responsive #top #wrap_all .title_container .container {
width: 100% !important;
max-width: 100% !important;
}
}
@media only screen and (min-width: 431px) and (max-width: 786px) {
.title_container .breadcrumb {
right: 0px !important;
top: 30% !important;
}
}
Best regards,
Mike
Yay! It worked!
Thank you for your speedy reply!