Adding a border to the newsletter signup button in footer

Hi everyone,

I’m trying to add a white border around the newsletter signup button in my footer. I have the footer and link buttons set to the same color, so without this border the signup button blends into the footer. All the other buttons throughout the site are fine, just needing to adjust that one.

URL: tipsyhues.com

Theme: Artisan

Thanks in advance!

Hi @Anonymous ,

This is Victor from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/styles.css->paste below code at the bottom of the file:

input.action_button.sign_up {
    border: 1px solid white;
}
input.action_button.sign_up:hover {
    border: 1px solid white;
}

Hope my answer will help you.

Best regards,

Victor | PageFly

That worked, thank you @PageFly-Victor !