Changing input text colour when posting Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    Changing input text colour when posting

    avatar
    MissyQuill
    New Member


    Posts : 5
    Reputation : 1
    Language : English

    In progress Changing input text colour when posting

    Post by MissyQuill 13/4/2014, 23:38

    Hi there, I'm really sorry to bother you guys and I tried looking through the search options but nothing seemed to qualify for what I'm looking for. Basically my forum just changed their background colour scheme etc and it all looks good but we want to change the appearance of the post box to comply with the new design. We found out how to do this but the problem is that our current input text colour (the one that appears while we're typing a post) in illegible with the new posting box. 

    So is there a way we can change that default input text colour while posting? 

    Thanks in advance. Smile
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13246
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: Changing input text colour when posting

    Post by Ange Tuteur 14/4/2014, 01:02

    Hello MissyQuill,

    For the editor text color try this :

    For source code mode add this to your CSS:
    Administration Panel > Display > Pictures and colors > Colors > CSS stylesheet
    Code:
    .sceditor-container textarea{
        color:#fff !important;
    }

    For WYSIWYG mode create a new script:
    Administration Panel > Modules > HTML & JAVASCRIPT > Javascript codes management
    Make sure to tick in all the pages
    Code:
    $(window).load(function () {
                  $(".sceditor-container iframe").contents().find("head").append("<style>body,html,code:before,p,table{color:#fff !important;}</style>")
                });