Breadcrumb CSS bug on mobile causes huge page width and breaks footer #371
Closed
Description
opened on Apr 11, 2016
have a look at this video. running freshly installed storefront 2.0 theme.
https://vincentius.tinytake.com/sf/NTg1NjExXzI5NTQ3OTE
you can see that the page width is way too big, which is causing the footer to break.
managed to find that it's due to some CSS typos in the breadcrumb area. as you can see, display:none; temporarily fixes the issue.
a complete fix would be to replace:
.woocommerce-breadcrumb { margin-left: -999em; margin-right: -999em; margin-bottom: 1.618em; font-size: .857em; padding: 1em 999em; }
with
.woocommerce-breadcrumb { margin-left: -.999em; margin-right: -.999em; margin-bottom: 1.618em; font-size: .857em; padding: 1em .999em; }
in this file: /storefront/assets/sass/woocommerce/woocommerce.css?ver=4.4.2
Metadata
Assignees
Labels
No labels
Activity