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.

New Editor mucking up my appearance

+3
E-Mark
Ultron's Vision
christianwomand
7 posters

Go down

New Editor mucking up my appearance Empty New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 11:56 am

Hey there! 

So, I've got a board with a black background. And the new editor is white, which is kind-of painful on the eyes. Is there a way to, I dunno, turn it the same color as the rest of the board background? Something so that I don't get a headache looking at it? Thanks!

~ CWD
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by Ultron's Vision June 12th 2013, 12:18 pm

I am sure there is.

If you could do me a favor and right-click on the background part you want to change the color of, then press 'Inspect Element', take a screenshot of the output and then post it here? That'd be awesome! (I cannot do so myself because I have no PC access right now)
Ultron's Vision
Ultron's Vision
Forumember

Male Posts : 634
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria

http://duelacademy.net

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 12:29 pm

It's the new text editor. It's got a default of a white background, but it's eye-searingly painful to look at when you've got a black background for a forum. Smile
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by Ultron's Vision June 12th 2013, 12:43 pm

Yeah, that's why I'm asking you to right-click on the area you want the background to change in since I cannot do so from my mobile on Wink
Ultron's Vision
Ultron's Vision
Forumember

Male Posts : 634
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria

http://duelacademy.net

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by E-Mark June 12th 2013, 12:49 pm

Try to add this on your CSS:
Code:
div.sceditor-toolbar {
background: #111 !important;
border-bottom: none !important;
}
.sceditor-container iframe {
background: #111 !important;
color: white !important
}
div.sceditor-container.ltr.wysiwygMode {
background: #111 !important;
}


Last edited by E-Mark on June 12th 2013, 2:32 pm; edited 2 times in total
E-Mark
E-Mark
Active Poster

Male Posts : 1412
Reputation : 169
Language : English
Location : Bitcoin

http://coding-spot.darkbb.com/

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 12:56 pm

New Editor mucking up my appearance Screen10
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 1:06 pm

I should also give the warning that I suck at anything that is code-related. Smile
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by 19CenturyWBTS June 12th 2013, 1:12 pm

---


Last edited by 19CenturyWBTS on June 12th 2013, 1:31 pm; edited 1 time in total
avatar
19CenturyWBTS
Forumember

Posts : 81
Reputation : 4
Language : English

http://19thcenturywbts.forumotion.com/forum.htm

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 1:15 pm

Okay, so that helps me with background color (mostly). Now I've got black on black text.
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by Ultron's Vision June 12th 2013, 1:24 pm

Use
Code:
textarea { color: #f00; }
and replace #f00 with your own color, that should work.
Ultron's Vision
Ultron's Vision
Forumember

Male Posts : 634
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria

http://duelacademy.net

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 1:31 pm

Whee! Okay. Now, do we have any suggestions for my Linux users?
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by Ultron's Vision June 12th 2013, 1:34 pm

Linux users' browsers should all be supporting the CSS specification for all help provided.

What's not working for them and which browsers are they using?
Ultron's Vision
Ultron's Vision
Forumember

Male Posts : 634
Reputation : 45
Language : English | German | HTML | JavaScript | PHP | C++ | Perl | Java
Location : Vienna, Austria

http://duelacademy.net

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 1:36 pm

Chrome for Linux. I'm getting a dark gray background with white text, but my user is getting dark gray background with dark gray/black text, no matter what code I'm using from here.
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by Menos June 12th 2013, 2:16 pm

E-MarkTry to add this on your CSS: wrote:
Code:
div.sceditor-toolbar {
background: #111 !important;
border-bottom: none !important;
}
.sceditor-container iframe, .sceditor-container textarea {
background: #111 !important;
}
.pun .frm-form {
color: white !important;
}
div.sceditor-container.ltr.wysiwygMode {
background: #111 !important;
}


Ultron's VisionUse
Code:
textarea { color: #f00; }




and replace #f00 with your own color, that should work.


Doesn't seem to work on phpbb2...
Menos
Menos
Forumember

Male Posts : 383
Reputation : 4
Language : Greek, English and Slovak

http://cbrxx.darkbb.com/

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by E-Mark June 12th 2013, 2:25 pm

E-Mark
E-Mark
Active Poster

Male Posts : 1412
Reputation : 169
Language : English
Location : Bitcoin

http://coding-spot.darkbb.com/

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by DaDwarf June 12th 2013, 2:27 pm



Where exactly do i add these? I have no idea DX Feel like such a noob lol
avatar
DaDwarf
New Member

Posts : 22
Reputation : 2
Language : Dutch

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by E-Mark June 12th 2013, 2:30 pm

Go to ACP > Display > Pictures and Colors > Colors > CSS Stylesheet tab:
- Add this:
Code:
div.sceditor-toolbar {
background: #111 !important;
border-bottom: none !important;
}
.sceditor-container iframe {
background: #111 !important;
color: white !important
}
div.sceditor-container.ltr.wysiwygMode {
background: #111 !important;
}



Go to ACP > Modules > HTML and Javascript > Javascript Management:
- Click the Create a new Javascript button, check the All page box then add this:
Code:
$(document).ready(function() {
    $('div.sceditor-container.ltr.wysiwygMode iframe').ready(function() {
        $('div.sceditor-container.ltr.wysiwygMode iframe').contents().find('p').css('color','white');
    });
});
E-Mark
E-Mark
Active Poster

Male Posts : 1412
Reputation : 169
Language : English
Location : Bitcoin

http://coding-spot.darkbb.com/

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 2:35 pm

And sadly, that isn't working for me now. Sad
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by DaDwarf June 12th 2013, 2:36 pm

Thanks e-mark, that fixed the problem on my computer. however, when i browse my forum on phone, the new editor is just an all white space, and the text is also all white, so you can't see what you are typing O:

We use the forum both on computer and phone, so any ideas how to fix that?
avatar
DaDwarf
New Member

Posts : 22
Reputation : 2
Language : Dutch

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by christianwomand June 12th 2013, 3:43 pm

Okay! Update, since I have to go to surgery in an hour. I have the proper background color. I have the proper text color -- until I refresh the page, then I'm getting a completely different text color. Also, the cursor is dark gray/black so that it's impossible to see on a black background.

Any suggestions?
avatar
christianwomand
New Member

Posts : 12
Reputation : 1
Language : English

Back to top Go down

New Editor mucking up my appearance Empty Re: New Editor mucking up my appearance

Post by Sir Chivas™ June 12th 2013, 5:10 pm

Hi,

Any of these users, please post in this thread for organization reasons, thank you. 

Only Topic Thread: https://help.forumotion.com/t124671-only-topic-new-editor#830465
Suggestion: https://help.forumotion.com/t124667-the-new-editor-of-forumotion-and-the-old-one#830520

Thread Locked.
Sir Chivas™
Sir Chivas™
Helper
Helper

Male Posts : 6983
Reputation : 457
Language : EN, FR, ES
Location : || CSS || HTML || Graphics Designs || Support ||

https://aforums.org

Back to top Go down

Back to top

- Similar topics

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