MyBB Community Forums

Full Version: First time user - need help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like the change the color on MYBB Page I am testing but cant seem to find out how to do it.

Take a look at the green color on http://66.39.144.55/forum/ I would like to change it to a dark blue to closely match the logo at the top.

Can anyone help?

Thanks!
i save your website and find this in my computer

[Image: a08ffa5a66e54b0388c0f757876577c4.jpg]

in color_calm

i find
a:link,
a:visited,
a:hover,
a:active {
	color: #48715b;
}

#logo {
	background: #385947 url(../../../images/colors/calm_header.png) top left repeat-x;
	border-bottom: 1px solid #263c30;
}

#header ul.menu li a {
	color: #fff;
}

#panel input.button {
	background: #385947 url(../../../images/colors/calm_thead.png) top left repeat-x;
}

.thead {
	background: #385947 url(../../../images/colors/calm_thead.png) top left repeat-x;
	color: #ffffff;
	border-bottom: 1px solid #263c30;
}

.thead input.textbox,
.thead select {
	border: 1px solid #263c30;
}

.popup_menu .popup_item:hover {
	background: #48715b;
	color: #fff;
}

.tt-suggestion.tt-is-under-cursor {
    background-color: #48715b;
	color: #fff;
}

.pagination a:hover {
	background-color: #48715b;
	color: #fff;
	border-color: #263c30;
}
	

i think  this line -> background: #385947 url(../../../images/colors/calm_header.png) top left repeat-x;
Ziuma, thanks that did it!