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.

Change Post New Topic text editor color

4 posters

Go down

In progress Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 1:16

I need help to change the text color from white to black. The text editor as it is appears as white text on a black background so basically no one can see what they are writing. Heres a screenie. I have fiddled with some of the color options in the admin section but they seem to affect other text in other parts of my forum. Im happy with pretty much all the color scheme except the (Post New Topic) white on white.

https://2img.net/h/i52.photobucket.com/albums/g39/ImagenMan/Kingdoms%20of%20Camelot/forumeditwhite.jpg
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 1:52

Add this to your CSS:
Code:
.sceditor-container iframe, .sceditor-container textarea {
    color: #000 !important;
}

Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 2:00

Just add it anywhere or is there a specific line I should add it to? Thanks for your help
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 2:14

Add it at the very bottom or very top, just make sure it does not split other code (in between), make sure it is seperated from other code.
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 2:23

I added it to very top but it did not seem to change anything heres a code snippet if you want to make sure I did it ok.

{
.sceditor-container iframe, .sceditor-container textarea {
color: #000000 !important;
}


position:absolute;
top: (new X position);
left: (new y position);
}

---
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 2:29

It needs to look like this:
Code:
.sceditor-container iframe, .sceditor-container textarea {
    color: #000 !important;
}

Also, when sending code, it's best to use these tags:
Code:
[code]CODE HERE[/code]
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 2:34

Ok Im pretty sure I have it right but it still its still white text on white background doesnt seem to have changed anything. Again here is the code I have place at very top but after the 1st { bracket

Code:
{
        .sceditor-container iframe, .sceditor-container textarea {
            color: #000000 !important;
        }
 
position:absolute;
top: (new X position);
left: (new y position);
}
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 2:36

Are you using the quick reply or full reply? Also, I see the code is shifted right, try copying all the code except the bracket and en add the bracket after you paste the code.
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 2:41

I was just using the reply button below, but heres how the code looks Im sure Im doing something wrong thanks for the help

Code:
{
.sceditor-container iframe, .sceditor-container textarea {
    color: #000000 !important;
        }
 
position:absolute;
top: (new X position);
left: (new y position);
}
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 2:43

The bracket you add needs to be all the way to the left.
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 2:46

Ok I have changed the code but it still isnt doing anything here is what my code looks like.
If you need to see the forum so you understand exactly how it looks when adding a New Post go here.
http://conquestspace.userboard.net/

Code:
{
.sceditor-container iframe, .sceditor-container textarea {
    color: #000000 !important;
}
 
position:absolute;
top: (new X position);
left: (new y position);
}
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 3:11

Guests cannot reply. Also try posting the code at the very top, even above the bracket.
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 3:16

Hmmm ok well the screenshot I posted at the beginning is what it looks like. If you highlight the text with mouse you can see its there but while typing its just white text on a white background. Is the code I have correct?
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 3:22

Did you do what I recently proposed? Try adding the code above that alone bracket.
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 3:41

Im sorry if I don''t quite understand the question but to me it looks like the code is above the lone bracket. Can you you explain it again?
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 3:59

As shown on line 1 there is this bracket "{" that is above the code, remove it and place it below the code. I'm very confused what your CSS looks like now.
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by David Cordero Sun 10 Apr - 4:12

Ok I got it Im sorry for confusing you and appreciate your help and patience this is what my code looks like now and it did work Thanks again

Code:
.sceditor-container iframe, .sceditor-container textarea {
    color: #000000 !important;
}
{
 
position:absolute;
top: (new X position);
left: (new y position);
}
David Cordero
David Cordero
New Member

Posts : 9
Reputation : 1
Language : English

http://conquestspace.userboard.net/

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Take Notes Sun 10 Apr - 4:18

You're welcome, have a nice day!
Take Notes
Take Notes
Helper
Helper

Male Posts : 2337
Reputation : 324
Language : English
Location : Forumountain

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by SLGray Sun 10 Apr - 5:39

Take a look at these options: AP > Display > Colors & Pictures > Colors
Look down the page for editor toolbar and background options.


Change Post New Topic text editor color 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 : 51554
Reputation : 3524
Language : English
Location : United States

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

Back to top Go down

In progress Re: Change Post New Topic text editor color

Post by Ape Sun 10 Apr - 13:08

Is this now solved ?


Change Post New Topic text editor color Left1212Change Post New Topic text editor color Center11Change Post New Topic text editor color Right112
Change Post New Topic text editor color Ape_b110
Change Post New Topic text editor color Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19435
Reputation : 2010
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Back to top Go down

Back to top

- Similar topics

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