can I have something like this on my mybb forum

Cleopatra

Addicted
Joined
Sep 23, 2013
Messages
971
Reaction score
0
FP$
1,697
I want to have something like this for my reply box
A faint background picture
 

Attachments

  • 2014-01-04 00.28.02.webp
    2014-01-04 00.28.02.webp
    51.3 KB · Views: 115
You can add the smileys through the ACP.

You can add a background image to the text area by following the second post in this thread: http://community.mybb.com/thread-134398.html

You can change the color of the text editor by doing the following:
Open /jscripts/editor_themes/default/stylesheet.css and add a color to .messageEditor

If you need any help, let me know.
 
Thank u J
It workes great
But only appear if I deactivate the chkeditor and used the normal replybox
Is there is a way I can apply it while using the chkeditor plugin
Cause when I use the main reply boxs
Most of the bbcodes button not there

And also
Do u mean jscripts through my FTP
Or AP
 
Edit the stylesheet.css file that is in the jscripts/editor_themes/default folder. You can download the file through FTP to your desktop and use a program to edit it, such as Notepad++.

Yes, the edits I gave you will only work for the normal editor. To make the changes to chkeditor, go to:

ACP > Configuration > Settings for CKEditor WYSIWYG editor

Edit the 'Color of the toolbar' setting.
 
Thank u I know I can change the ckeditor toolbar color
But can I add a background image to its textarea. ?
 
instead of adding background-color add background-image then style it in your css
 
Yes you can. Edit the file /ckeditor/contents.css

Find:
Code:
.cke_editable {
	font-size: 13px;
	line-height: 1.6em;
}

Replace with:

Code:
.cke_editable {
	font-size: 13px;
	line-height: 1.6em;
   background-color: #000;
   color: #fff;
}
 
Back
Top Bottom