MyBB Community Forums

Full Version: how to change this color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how to change this color??

1."quote" to grey deep color
2.post background to white color

[attachment=30390]

please
Question # 1

Go to ACP>Templates & Styles>Theme>YOUR THEME>Global.css>Simple Mode>blockquote

Change the background color to the color of your choice. You can use the site below to find color hex codes.

http://html-color-codes.info/

Question # 2

Go to ACP>Templates & Styles>Theme>YOUR THEME>Global.css>Advanced Mode and find:

.post_body {
    padding: 5px;
}
.post_content {
    padding: 5px 10px;
}

Replace with

.post_body {
    padding: 5px;
    background: #ffffff;
}
.post_content {
    padding: 5px 10px;
 background: #ffffff;
}