Hello,
I enabled the breadcrumbs in my site and from desktop everything is ok. The problem is that when I navigate from smartphone the breadcrumbs are sticked to the titles. Can you please help me?
Thank you
Hey Anj27,
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: 766px) {
h1.main-title.entry-title {
margin-bottom: 14px !important;
}
}
Best regards,
Mike
Hello Mike,
I tried but nothing happens.
Hi Anj27,
Please try the following css:
@media only screen and (max-width: 767px) {
#top .title_container .main-title,
#top #wrap_all .alternate_color.title_container .main-title {
top: 0 !important;
min-height: 30px;
line-height: 1em;
margin-bottom: 15px;
}
}
Best regards,
Victoria
Hello Victoria,
now it is working very well for the mobile. The only thing is that the title of the container in the desktop version is displayed at the bottom of the grey stripe. I would like to display it in the middle of the container.
Thank you very much