Hi, can anyone help me change the width of my contact for fields without the background ?
This code worked but it was moving the background as well
Thank you:)
@media (min-width: 767px) {
.t4s-row {
max-width: 80%;
}
}
Hi, can anyone help me change the width of my contact for fields without the background ?
This code worked but it was moving the background as well
Thank you:)
@media (min-width: 767px) {
.t4s-row {
max-width: 80%;
}
}
Hello @Daniel19901
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
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
@media only screen and (min-width: 600px) {
.contact-form {
padding-left: 10%;
padding-right: 10%;
}
}