Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #596603

    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;
    }
    • This topic was modified 8 years ago by djshortkut.
    #597028

    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

    #597040

    Thank you! You can close this thread.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Contact Form Active Form Element Outline’ is closed to new replies.