MyBB Community Forums

Full Version: Change colour of text writing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Change colour of text when I writing a post. See my Home Page.
You can change the text color in the editor.
in global.css add below at bottom (#ff0000 is for red color)
#message {color : #ff0000 !important;}

Edit global.css

Find:
Quote:.post_content {
padding: 5px 10px;
}

Replace with:
Quote:.post_content {
color: #fff;
padding: 5px 10px;
}

Replace #fff with your respective color code.
Now...how I change "LINK" colour?
^ look for below or its similar code in global.css ; change the color to your like !!
a:link {color: #003366;
(2011-07-06, 03:39 PM)Bapun Raz Wrote: [ -> ]go to global.css and find- #message {color : #ff0000 !important;}

change the color code whatever you want Wink

Nice try, copying ranjani's post. But there isn't a class named message in global.css. Toungue
I want to change colour to after I add Hyper link code.....
If you just want to change the color of links in posts, add this at the bottom in global.css:

.post_content a {
color: #fff;
}

Change #fff to the color you want.