Hi,
I am having trouble centering this slider multi-column section, could anyone help me?
Thanks
(Dawn theme)
Issue: On Shopifyâs Dawn theme, a multicolumn slider wasnât centered on mobile; one store instance appeared centered while another was offset (suspected left margin/padding). Screenshots and a preview link were shared.
Action taken: A CSS fix was proposed by editing assets/base.css and adding a mobile-only media query (max-width: 749px) to set .multicolumn-list__item width to 97% (using !important). This targets small screens to adjust the slide width.
Outcome: The user reported better results with width: 100% instead of 97%, which centered the slider more accurately. They also expressed a preference to have the next slide âpeekâ slightly to signal the slider behavior, but accepted the current solution.
Status: Centering on mobile resolved via CSS change; enhancement (visible peek of the next slide) remains unimplemented. No further technical steps or disagreements were recorded.
Notes: Key elements included a code snippet and preview link; screenshots illustrated the offset alignment. Technical terms: media query (CSS rule that applies styles under specified screen sizes).
Hi,
I am having trouble centering this slider multi-column section, could anyone help me?
Thanks
(Dawn theme)
Thanks for your response, I do not see âalignment settingsâ. not to confuse you but i have opened up the same theme on another account to check the css and things and it is the same however the column seems to be centered on the other account, it appears it is something to do with the margins/padding on the left i just cant work it out ![]()
please see screenshots to see what i mean
Hello @brandnkay
Please send me your store URL and password, so I can check it and update you.
I can share a preview
Hello @brandnkay
Go to Online Store, then Theme, and select Edit Code.
Search for assets/base.css.
Add the provided code at the end of the file.
@media screen and (max-width: 749px){
.multicolumn-list__item{
width: 97%!important;
}
}
Thanks! i found that 100% works better after trying 97% it was still a little off also would like the second image to be peeking so the user knows it is a slider component however this will do thanks
Hello @brandnkay
Youâre very welcome! Iâm thrilled to hear that youâre pleased with the outcome. Donât hesitate to reach out if you need further assistance.
like and accepting the All solution. Thank you!