Hi, Here is my website https://hatkebride.com/
- I wanted to change the Form field background color to #FFFFFF when I click inside the form
- I wanted to change the Form field outline thickness to 2px and the Form field outline color to #FFFFFF when I click inside the form.
Note: I wanted to make above changed for entire site. for example newsletter popup, footer, contact page everywhere.
@keyurdodiya
can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.site-footer .btn:not(.disabled):not([disabled]):hover, .site-footer .btn:not(.disabled):not([disabled]):focus, .site-footer textarea:not(.disabled):not([disabled]):hover, .site-footer textarea:not(.disabled):not([disabled]):focus, .site-footer select:not(.disabled):not([disabled]):hover, .site-footer select:not(.disabled):not([disabled]):focus, .site-footer input:not(.disabled):not([disabled]):hover, .site-footer input:not(.disabled):not([disabled]):focus {
background: #fff;
box-shadow: 0 0 0 0.2rem #ffffff;
}