Is there a way to make these dividers full width on mobile view? I would appreciate any help with this.
My store url: https://bellevodesign.com
the issue:
A user is trying to make footer menu dividers extend full width on mobile view in Shopify’s Dawn theme.
Initial Problem:
Proposed Solution:
A community member provided custom CSS to add to section-footer.css targeting:
Current Status:
The helper advised against using negative margins and recommended finding existing padding/margin properties to adjust instead. The discussion is ongoing with no working solution yet.
Is there a way to make these dividers full width on mobile view? I would appreciate any help with this.
My store url: https://bellevodesign.com
the issue:
Hi @bellevo
Check this one.
You add a lot of conflict css.
If you want to reduce the space dont add the minus margin, please. find if there is a padding or margin on the area that you like to reduce space. Im not sure if this will work on your base.css.
@media only screen and (max-width: 749px){
.grid .footer-block__heading {
margin-left: 0px;
}
.footer__content-top.page-width {
padding: 0px;
}
#shopify-section-sections--21762617606488__footer .footer-block__brand-info div.rte > p {
margin-left: 0px;
margin-right: 0px;
}
.footer-block__brand-info .rte {
margin: 0 15px;
}
.grid .footer-block__heading {
padding: 1.5rem;
}
.grid .footer-block__heading::after {
right: 1.5rem !important;
}
.grid .footer-block__heading + .footer-block__details-content {
margin-left: 1.5rem !important;
}
}
Hey, I removed all of the minus margins and added the code but it didn’t change the divider size.