Home › Forums › WoodMart support forum › Product title partially showing on mobile › Reply To: Product title partially showing on mobile
February 17, 2018 at 8:54 am
#40449
Bogdan Donovan
Keymaster
Hi,
Try to add the following code snippet to the Mobile Custom CSS area in Theme Settings to fix breadcrumbs margin on mobile.
body .single-breadcrumbs-wrapper .woocommerce-breadcrumb {
margin-bottom: 30px;
}
}
To remove Home from breadcrumbs add this snippet to Mobile Custom CSS area.
.woocommerce-breadcrumb a:first-child {
display: none;
}
Product Title in breadcrumbs was added to your mobile resolution by previous code snippet https://prnt.sc/ifxzsm, and if you want to remove it you need to remove the actual snippet from your custom CSS field.
Regards