MyBB Community Forums

Full Version: Adding Reputationd To Postbit?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Somehow I removed it when editing that template. is there anyway to add it back?
In postbit_author_user add {$post['replink']}
Thanks AJS

I have one more question. Is there anyway to change rep count color from green to blue?
In global.css stylesheet, you need to change those attributes;
.reputation_positive {
	color: green;
}

.reputation_neutral {
	color: #444;
}

.reputation_negative {
	color: red;
}
In global.css find and change the color:
.reputation_positive {
	color: green;
}
thanks so much AJS & Yaldaram for all of the help!