How to hide container on mobile for an email form

How to hide container on mobile for an email form

pael
New Member
6 0 0

Hi, I'm currently designing the password page for my website and it looks good on desktop however on mobile the email form has no box around it due to there not being an option to hide container for the mobile like there is on desktop.

 

Screenshot 2024-08-31 at 17.03.23.pngScreenshot 2024-08-31 at 17.03.16.png

 

the right is how it looks on desktop and how i want it to look however the left is what the mobile looks like.

 

the website is: pael.fyi

Replies 4 (4)

Moeed
Shopify Partner
4907 1295 1571

Hey @pael 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (max-width: 767px) {
.email-signup-banner__box.banner__box.newsletter.newsletter__wrapper.isolate.email-signup-banner__box--no-image.content-container.color-scheme-1.gradient.content-container--full-width-mobile {
    display: none !important;
}
}
</style>

RESULT:

Moeed_0-1725120692754.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
pael
New Member
6 0 0

Hi, thanks for the reply. unfortunately this is not what i was looking for; i still want the email form to be there but it needs to look like the desktop version where there is an outline of the email form box as on the mobile version it just shows the text.

Moeed
Shopify Partner
4907 1295 1571

Hey @pael 

 

Apologies for the confusion, remove the previous code and add this new code with the same steps mentioned above.

<style>
.newsletter-form__field-wrapper .field__input {
    border: solid 1px black !important;
}
</style>

RESULT:

Moeed_0-1725121554099.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️
pael
New Member
6 0 0

Hi, still not working unfortunately, can you have a look if i've entered the code right?

 

pael_0-1725121706701.png