color in the user input box

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • reneeccwest

    color in the user input box

    how can I make the value of the user input box as a desired color? (such as red)

    Is it also possible to change the color in the user input box background?

    RC
  • David Dorward

    #2
    Re: color in the user input box

    reneeccwest wrote:
    [color=blue]
    > how can I make the value of the user input box as a desired color? (such
    > as red)[/color]


    [color=blue]
    > Is it also possible to change the color in the user input box background?[/color]



    --
    David Dorward http://dorward.me.uk/

    Comment

    • Lodewijk van Haringhal

      #3
      Re: color in the user input box

      "reneeccwes t" <reneeccwest@ho tmail.com> schreef in bericht
      news:9f9d6d21.0 309080530.48d38 dd9@posting.goo gle.com...[color=blue]
      > how can I make the value of the user input box as a desired color? (such[/color]
      as red)[color=blue]
      >
      > Is it also possible to change the color in the user input box background?
      >[/color]
      Use a stylesheet.


      Comment

      • Jeff Thies

        #4
        Re: color in the user input box

        reneeccwest wrote:[color=blue]
        >
        > how can I make the value of the user input box as a desired color? (such as red)[/color]

        if(form[field_name].style){
        form[field_name].style.backgrou ndColor='red'};

        I use that all the time to background color form elements that fail the
        form check.

        Cheers,
        Jeff
        [color=blue]
        >
        > Is it also possible to change the color in the user input box background?
        >
        > RC[/color]

        Comment

        Working...