Input Form/Text Field Grey and Yellow Borders?

Discussion in 'HTML & Website Design' started by kiwin, Jun 9, 2009.

  1. #1
    Hello DP,

    Does anyone know what CSS code for this one? A yellow border around a grey border on forms?

    [​IMG]

    Can't seem to find it anywhere.. Thanks in advance.
     
    kiwin, Jun 9, 2009 IP
  2. pod

    pod Peon

    Messages:
    55
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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!
     
    pod, Jun 9, 2009 IP
  3. kiwin

    kiwin Peon

    Messages:
    281
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    so what is the css code for it?
    two borders? double borders? is it possible to give double borders two colors?
     
    kiwin, Jun 9, 2009 IP
  4. pod

    pod Peon

    Messages:
    55
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    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.
     
    pod, Jun 9, 2009 IP
  5. kiwin

    kiwin Peon

    Messages:
    281
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    hello pod, ill try that out you can check the facebook login page to see what im talking about
     
    kiwin, Jun 10, 2009 IP