i want to icrease width of enter your email horizontally as mentioned in image by black box.. and want the subscribe button size 1/3rd
URL : https://baab16-dc.myshopify.com/
PASS : Drapex
i want to icrease width of enter your email horizontally as mentioned in image by black box.. and want the subscribe button size 1/3rd
URL : https://baab16-dc.myshopify.com/
PASS : Drapex
Hello @rgeafrauuhf
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.
Here is the solution for you @rgeafrauuhf
Please follow these steps:
Then find the base.css or theme.css file.
.input-group-field.newsletter__input {
width: 300px !important;
}
Hi @rgeafrauuhf ,
We can do this through CSS.
To get started, follow these steps:
.input-group.newsletter__input-group {
max-width: unset;
width: 100%;
display: grid;
grid-template-columns: 2fr 1fr;
}
.newsletter-section .input-group.newsletter__input-group .btn {
width: 100%;
}
Try changing the width .input-group.newsletter__input-group from 100% to any value to suit it to your liking.
Result:
Hi @rgeafrauuhf ,
I have reviewed your requirement, you just need to edit css script and the issue will be resolved. You can follow my instructions!
Step 1: Go to Admin → Online store → Theme > Edit code:
Step 2: Search for the file theme.css. And add this code snippet to the end of the file.
.input-group.newsletter__input-group {
width: 100% !important;
}
.input-group.newsletter__input-group span.input-group-btn button {
width: 100px !important;
}
.input-group.newsletter__input-group span.form__submit--large {
display: flex !important;
justify-content: center !important;
}
Step 3: Save your code and reload this page.
=>> The result:
We hope my suggestions will solved your issue.
If it is helpful, can you kindly give us likes and mark the solution for us?
Have a nice day, sir