Make outline of field boxes darker on contact form/page?

Solved

Make outline of field boxes darker on contact form/page?

Gen-Audio
Pathfinder
114 0 23

Hi,

 

Could anyone help? The boxes on my contact form are very bright and not very noticeable for the customers. Can these be made a bit darker?

Using Dawn theme:

https://www.generationaudio.co.uk/pages/contact

 

Thanks 🙂

Accepted Solution (1)

azamgill
Shopify Partner
325 47 82

This is an accepted solution.

hey @Gen-Audio 

If the theme has no setting to update the color then you need to change the color from the base.css or  if you have a custom css file then you can add this in that file.

 

textarea.field__input, input.field__input {
    border: 1px solid #484848 !important;
}

 

 

Azam Gill
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- Encourage me ❤️

Come and visit us at Wbify

View solution in original post

Replies 3 (3)

azamgill
Shopify Partner
325 47 82

This is an accepted solution.

hey @Gen-Audio 

If the theme has no setting to update the color then you need to change the color from the base.css or  if you have a custom css file then you can add this in that file.

 

textarea.field__input, input.field__input {
    border: 1px solid #484848 !important;
}

 

 

Azam Gill
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- Encourage me ❤️

Come and visit us at Wbify
Gen-Audio
Pathfinder
114 0 23

This worked perfect! Applied the css in the form. Thanks for your time, much appreciated 🙂

PGRAFHOKE
Visitor
1 0 0

I added it directly to the Contact page in the Custom CSS section and it worked perfectly. Thank you for your time and expertise.