textbox field css change only partially works

  • stormingrobots
    Asked on June 15, 2019 at 6:49 AM

    1560595621junk Screenshot 10

    #input_137 {

        background-color : rgba(255,255,255,1);  // does not work

        color : #000000;

        border : 1px!important; // does not work

        border-color : #ff0000!important; // does not work

    }


  • Victoria_K
    Replied on June 15, 2019 at 1:59 PM

    I can suggest to change the code this way:

    #input_137 {

        background-color : rgba(255,255,255,1) !important;

        color : #000000 !important;

        border : 1px solid #ff0000!important;

    }

  • stormingrobots
    Replied on June 17, 2019 at 7:15 AM

    thank you.