Lorenza theme newsletter section text wider

Hi, I would like to make the newsletter section the text wider as now it looks very narrow. Thanks for your help

Preview:

https://b2giqxxx7vmlc7iz-54072377515.shopifypreview.com

Hi @urbantis

To make the newsletter section text wider in your Shopify store, follow these steps:

Use this css in the bottom of the file of theme.css in the Edit Code section of themes in the online store located under Shopify Admin.

.newsletter__text {
    max-width: 800px !important; /* Adjust width */
    width: 100%;
    text-align: center; /* Center align text */
    margin: 0 auto; /* Ensure proper centering */
}

Let me know if this works or else will share some alternative solutions.

Hello @urbantis
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.

.newsletter__heading.type-heading-1 {
max-width: 100% !important;
}
.newsletter__subheading.type-body-regular.rte {
max-width: 100% !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks