All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I need some help in customising my multicolumn section so that it has letter spacing and padding
Solved! Go to the solution
This is an accepted solution.
Hello @robertsolcan
use this CSS Online Store----------------> Themes--------------------> Edit code-----------------> Find file "section-multicolumn.css" add this CSS at the very bottom
.multicolumn-card.content-container.inline-left .inline-richtext a, .multicolumn-card.content-container.inline-right .inline-richtext a {
letter-spacing: 2px;
}
Please let me know
Thanks
@robertsolcan thanks for posting here, which issues are you facing for multi-column sections?
This is an accepted solution.
Hello @robertsolcan
use this CSS Online Store----------------> Themes--------------------> Edit code-----------------> Find file "section-multicolumn.css" add this CSS at the very bottom
.multicolumn-card.content-container.inline-left .inline-richtext a, .multicolumn-card.content-container.inline-right .inline-richtext a {
letter-spacing: 2px;
}
Please let me know
Thanks
This is Noah from PageFly - Shopify Page Builder App
Hi @robertsolcan I can help you. Please can you provide the website url (and password if have). Thank you.
Best regards,
Noah | PageFly
Please let me know if it works by giving it a Like or marking it as a solution!
PageFly - #1 Page Builder for Shopify merchants.
All features are available from Free plan. Live Chat Support is available 24/7.
You can utilize the custom CSS feature within custom themes to add your desired styles.
Link: Online Store => Themes => Themes => Click "Customize" in your current theme => click your section (Multicolumn) => Custom CSS
If you encounter any further difficulties, please feel free to contact me via email or inbox. I will be to assist you.
Mageplaza | Top-Rated Shopify Agency | Trusted by 230,000+ worldwide merchants
If our suggestion works for you, please give it a Like or mark it as a Solution!
Should you have any questions or concerns, feel free to contact us via consultant@mageplaza.com
To adjust letter spacing and padding in your multicolumn section, you'll need to use custom CSS. Here's a basic example:
.section-multicolumn .column {
letter-spacing: 2px;
padding: 20px;
}