You provided me with the code below to outline the active form element that is selected which works great. The only problem is that I need the outline to have a radius to match the form outline so it lines up. Right now it has no radius. (See attached image) Can you give me modified quick css to fix this please? Thanks!
#top input[type="text"]:focus, #top input[type="password"]:focus, #top input[type="email"]:focus, #top input[type="number"]:focus, #top input[type="url"]:focus, #top input[type="tel"]:focus, #top input[type="search"]:focus, #top textarea:focus,select:focus {
box-shadow: none !important;
outline: 1px #188ece solid!important;
}
Hi djshortkut!
Please change the code to following one instead
#top input[type="text"]:focus, #top input[type="password"]:focus, #top input[type="email"]:focus, #top input[type="number"]:focus, #top input[type="url"]:focus, #top input[type="tel"]:focus, #top input[type="search"]:focus, #top textarea:focus, select:focus {
box-shadow: 0px 0px 1px 1px #188ece!important;
}
Cheers!
Yigit
Thank you! You can close this thread.