I need some help in customising my multicolumn section so that it has letter spacing and padding
@robertsolcan thanks for posting here, which issues are you facing for multi-column sections?
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
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.
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;
}
