Hi I would really like to adjust the layout of my footer menu to view as 2 columns not one.
can someone help please ? Thanks so much!
Topic summary
A user seeks help adjusting their Shopify store’s mobile footer menu from a single column to a two-column layout on the Spotlight theme.
An attached screenshot shows the current single-column footer menu layout on mobile.
Solution provided:
- Navigate to Online Store → Theme → Edit code
- Locate the
base.cssfile - Add CSS code at the bottom that uses
column-count: 2for screens under 749px width - Save the changes
The solution uses a media query to apply the two-column layout specifically to mobile devices. The discussion appears resolved with a working code snippet provided.
Hey @Luxelashenvy
Please follow below steps
Step 1: Go to Online Store → Theme → Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
@media screen and (max-width: 749px) {
.footer .footer-block__details-content{column-count: 2;}
}
Let me know if you need any other help.
