Hi!
How can I ensure that the header text of multi-column aligns with the main content on mobile view? would like this for all multi-columns across my site, not just this specific section.
thank you!
Shopify URL: https://65a186-44.myshopify.com/
Password: meerew
Hi @letsgetwasted ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Find file theme.liquid
Step 3: Insert this code above tag:
@media only screen and (max-width: 749px) {
.multicolumn .title-wrapper-with-link {
margin-left: 2.5rem;
}
}
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you 
Hi @letsgetwasted
Hope you are doing well.
To align the header of multi-column section with the blocks, you just need to follow below steps;
-
Go to admin > Online store > Edit code.
-
In the code directory, find the file named “section-multicolumn.css”.
-
Open the file and scroll down at the end of the file.
-
Copy the below mentioned code and paste it at the end of the file.
.title-wrapper-with-link.multicolumn__title {
margin-left: 2.5rem;
margin-right: 2.5rem;
}
- Don’t forget to save the file.
Hope this code works for your issue and fix it.
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
Hello @letsgetwasted
You can add code by following these steps
-
Go to Online Store → Theme → Edit code.
-
Open your theme.liquid file
-
Paste the below code before on theme.liquid
@media screen and (max-width: 749px) {
.multicolumn .title-wrapper-with-link {
margin-left: 24px !important;
}
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.