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.

Editor text color change

3 posters

Go down

Solved Editor text color change

Post by Joost August 6th 2017, 8: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, 8:35 pm; edited 2 times in total
Joost
Joost
Active Poster

Male Posts : 1354
Reputation : 189
Language : Dutch, English
Location : The Netherlands

https://ondersteun.actieforum.com/

Back to top Go down

Solved Re: Editor text color change

Post by SLGray August 6th 2017, 8: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.
SLGray
SLGray
Administrator
Administrator

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

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Editor text color change

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

It's not working on my forum this css code. Sad
Joost
Joost
Active Poster

Male Posts : 1354
Reputation : 189
Language : Dutch, English
Location : The Netherlands

https://ondersteun.actieforum.com/

Back to top Go down

Solved Re: Editor text color change

Post by SLGray August 6th 2017, 9: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.
SLGray
SLGray
Administrator
Administrator

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

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Editor text color change

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

I have refresh my forum with CTRL + F5 , i don't see this change... Sad
Joost
Joost
Active Poster

Male Posts : 1354
Reputation : 189
Language : Dutch, English
Location : The Netherlands

https://ondersteun.actieforum.com/

Back to top Go down

Solved Re: Editor text color change

Post by SLGray August 6th 2017, 9: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.
SLGray
SLGray
Administrator
Administrator

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

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

Solved Re: Editor text color change

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

I have this done, not working..
Joost
Joost
Active Poster

Male Posts : 1354
Reputation : 189
Language : Dutch, English
Location : The Netherlands

https://ondersteun.actieforum.com/

Back to top Go down

Solved Re: Editor text color change

Post by Draxion August 7th 2017, 4: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.
Draxion
Draxion
Helper
Helper

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

https://www.talesoftellene.com/

Back to top Go down

Solved Re: Editor text color change

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

Thank you very much @Draxion Very Happy
Joost
Joost
Active Poster

Male Posts : 1354
Reputation : 189
Language : Dutch, English
Location : The Netherlands

https://ondersteun.actieforum.com/

Back to top Go down

Solved Re: Editor text color change

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

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

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

https://www.talesoftellene.com/

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum