Changing color of the buttons for the contact and login pages

Hi Everyone,

I need help with changing the colour of the buttons for the contact and login pages, I’ve managed to change all the other button colours but I can’t seem to find a solution for these. Seems to be different for the forms.

Any direction or advice will be greatly appreciated, thank you.

Hey @Chaos8

I read your description. Can you please provide me your webshop URL?

I will check and provide you solution here.

Thanks!

Thanks for your prompt reply.

URL: https://chaoswine.com.au/

Hey @Chaos8

Try this CSS class.

Add code assets/theme.scss.liquid Or assets/timber.scss.liquid bottom of the file

#contact_form .btn {color: #f3a29; background:#fff; border: 2px solid #f3a293;}
#account .btn {color: #f3a29; background:#fff; border: 2px solid #f3a293;}
#create-account .btn {color: #f3a29; background:#fff; border: 2px solid #f3a293;}

Hope this will work for you.

Thanks!

1 Like

Thank you so much, although how do I match the text colour to #f3a29 it is currently white and doesn’t stand out from the background

1 Like

Hey @Chaos8

Try this CSS class.

Add code assets/theme.scss.liquid Or assets/timber.scss.liquid bottom of the file

button, input[type="submit"] {color: #f3a29;}

Hope this will work for you.

Thanks!

1 Like

Thank you so much :slightly_smiling_face: Works perfectly

1 Like