Hi guys,
Website: seraneeva.com
How can I get rid of the white box surrounding the newsletters in the footer in the search page? It should look like how it does on the homepage.
Hi guys,
Website: seraneeva.com
How can I get rid of the white box surrounding the newsletters in the footer in the search page? It should look like how it does on the homepage.
Hi, have you been able to solve this?
Go to your online store → customize → settings → custom css
and paste this code there
input#Email {
border: unset !important;
}
Hi @flammagreg ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file base.css, theme.css, styles.css, custom.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file → Save
#newsletter-footer_form .footer-email-input {
border: 0;
border-bottom: 2px solid var(--color-scheme-border-color);
}
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you
I have
Hi @flammagreg , Pls insert this code to your file footer-main.liquid:
{%- if full_url contains 'search' -%}
{%- endif -%}
Hope this can help you ![]()