Change Footer Email Signup Font Color

Change Footer Email Signup Font Color

nxjus
Excursionist
31 0 9

Hi, I’m looking to change the font color of the email signup input and placeholder text from black to white in my footer. I’m using the Symmetry and want to make this change without affecting other elements. 

 

Store: https://tdez3xkjesaj469m-84567851276.shopifypreview.com/

 

Thanks!

Replies 3 (3)

topnewyork
Astronaut
1368 165 224

Hi @nxjus 
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head>

<style>
  #pagefooter input {
    border-color: #fff !important;
    background-color: #fff !important;
}
</style>

Result:

topnewyork_0-1745845982534.png

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

 

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
nxjus
Excursionist
31 0 9

Thank you but I am looking to change text color not border or background color 🙂

topnewyork
Astronaut
1368 165 224

@nxjus 

Oops so sorry, try this one 

<style>
  .footer .newsletter__input {
  color: #ffffff !important;  
}

.footer .newsletter__input::placeholder {
  color: #ffffff !important;  
  opacity: 1 !important;  
</style>

If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month