Hello DP, Does anyone know what CSS code for this one? A yellow border around a grey border on forms? Can't seem to find it anywhere.. Thanks in advance.
Probably something like this: INPUT { input form specific CSS here } ...Just search your stylesheet for "input" and you should find your culprit, or view the source of that form and see if it has a class ID (<input class="" id="">) and search for those class or ID values. Hope this helps!
so what is the css code for it? two borders? double borders? is it possible to give double borders two colors?
Maybe the input field is wrapped in a div, like so? <form> <div style="border: solid #FF0; width:108px"> <input style="border: solid #CCC" width="100" /> </div> </form> Code (markup): Hard to tell what exactly it is without being able to view the source, but something like that would do it I think.