Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.


    • CommentAuthorjohn
    • CommentTimeDec 13th 2006
     
    How Could I Set textarea Background Color ?

    I want to change textarea Background color

    php Code:

    <textarea name="articlesummary" rows="3" cols="30" style="width: 96%">{$articlesummary}</textarea>

    it is the code which i want to change

    thanks
    • CommentAuthorphilips
    • CommentTimeDec 13th 2006
     
    Use this code


    <textarea name="articlesummary" rows="3" cols="30" style="width: 96%">{$articlesummary}</textarea>

    thanks
    • CommentAuthorjustnajm
    • CommentTimeDec 14th 2006
     
    CSS is basically used to change the background of html elements, and the tags you specified will become like this, when css is applied:


    <textarea name="articlesummary" rows="3" cols="30" style="width: 96%; background-color: #E1E3CA;">{$articlesummary}</textarea>


    #E1E3CA is the code for light green color, see the results after using this code. You can also change it to common color names such as, blue, green, black, etc.