Appnitro Software Forums » MachForm 2

Change Background Color of Paragraph Text


  1. I changed the colors on my webform to white, and it looks great, but the background color in the paragraph text box is white so I cannot see what I am typing in that text box. How do I change that background color?

    Also a drop down menu does the same thing, how do I change the color so that people can see the choices?

    Posted 6 months ago #
  2. redityo

    You can try to search these css code :

    #main_body textarea.textarea {
        background: url("../../../images/shadow.gif") repeat-x scroll center top #FFFFFF;
        border-color: #7C7C7C #C3C3C3 #DDDDDD;
        border-style: solid;
        border-width: 1px;
        color: #333333;
        font-family: "Lucida Grande",Tahoma,Arial,Verdana,sans-serif;
        font-size: 100%;
        margin: 0;
        width: 99%;
    }
    
    #main_body select.select {
        background: url("../../../images/shadow.gif") repeat-x scroll center top #FFFFFF;
        border-color: #7C7C7C #C3C3C3 #DDDDDD;
        border-style: solid;
        border-width: 1px;
        color: #333333;
        font-size: 100%;
        margin: 1px 0;
        padding: 1px 0 0;
    }

    and change the "background" color like this :

    #main_body textarea.textarea {
        background: url("../../../images/shadow.gif") repeat-x scroll center top #696969;
        border-color: #7C7C7C #C3C3C3 #DDDDDD;
        border-style: solid;
        border-width: 1px;
        color: #333333;
        font-family: "Lucida Grande",Tahoma,Arial,Verdana,sans-serif;
        font-size: 100%;
        margin: 0;
        width: 99%;
    }
    
    #main_body select.select {
        background: url("../../../images/shadow.gif") repeat-x scroll center top #696969;
        border-color: #7C7C7C #C3C3C3 #DDDDDD;
        border-style: solid;
        border-width: 1px;
        color: #333333;
        font-size: 100%;
        margin: 1px 0;
        padding: 1px 0 0;
    }

    that would do it.


    MachForm Support

    Posted 6 months ago #

RSS feed for this topic

Reply