Editor text color change 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.
3 posters

    Editor text color change

    Joost
    Joost
    Active Poster


    Male Posts : 1370
    Reputation : 193
    Language : Dutch, English
    Location : The Netherlands

    Solved Editor text color change

    Post by Joost August 6th 2017, 9:46 pm

    Hello,

    How can i change the self-written text color in my editor ?

    -screenshots deleted by Joost-


    Last edited by Joost on August 7th 2017, 9:35 pm; edited 2 times in total
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Editor text color change

    Post by SLGray August 6th 2017, 9:52 pm

    CSS:
    Code:
    .sceditor-container iframe, .sceditor-container textarea {
        color:  YOUR COLOR;
    }



    Editor text color change Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Joost
    Joost
    Active Poster


    Male Posts : 1370
    Reputation : 193
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Editor text color change

    Post by Joost August 6th 2017, 9:57 pm

    It's not working on my forum this css code. Sad
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Editor text color change

    Post by SLGray August 6th 2017, 10:02 pm

    Code:
            .sceditor-container iframe, .sceditor-container textarea {
                color:  YOUR COLOR !important;
            }



    Editor text color change Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Joost
    Joost
    Active Poster


    Male Posts : 1370
    Reputation : 193
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Editor text color change

    Post by Joost August 6th 2017, 10:06 pm

    I have refresh my forum with CTRL + F5 , i don't see this change... Sad
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51556
    Reputation : 3519
    Language : English
    Location : United States

    Solved Re: Editor text color change

    Post by SLGray August 6th 2017, 10:11 pm

    Add it to the top of your CSS stylesheet.  If this does not work, please clear your browser's cache and history.



    Editor text color change Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Joost
    Joost
    Active Poster


    Male Posts : 1370
    Reputation : 193
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Editor text color change

    Post by Joost August 6th 2017, 10:19 pm

    I have this done, not working..
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: Editor text color change

    Post by Draxion August 7th 2017, 5:46 am

    Hi there, since the editor is an iframe, you have to add CSS via JavaScript.

    Add this to your JavaScripts.
    Title: Whatever you please.
    Placement: all pages.
    Code:
    $(function() {
      $(function() {
        $(".sceditor-container iframe")
          .contents()
          .find("head")
          .append(
            "<style>body,html,code:before,p,table{color:#FFFFFF!important;}</style>"
          );
      });
    });

    Where it says color:YOUR COLOR!important;. That's where you edit your text color in the editor.
    Joost
    Joost
    Active Poster


    Male Posts : 1370
    Reputation : 193
    Language : Dutch, English
    Location : The Netherlands

    Solved Re: Editor text color change

    Post by Joost August 7th 2017, 9:35 pm

    Thank you very much @Draxion Very Happy
    Draxion
    Draxion
    Helper
    Helper


    Male Posts : 2518
    Reputation : 321
    Language : English
    Location : USA

    Solved Re: Editor text color change

    Post by Draxion August 7th 2017, 10:00 pm

    You're welcome. Smile
    Problem solved & topic archived.
    Please read our forum rules: ESF General Rules