MyBB Community Forums

Full Version: Were is this stored 2 ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Reputation: 1

The 1 is green were is this stored 2 the color.
Im a php coder and have searched the showthread.php and ent there

i want to make another status the same color ..
In global.css;
.reputation_positive {
    color: green;
}
(2011-04-26, 09:35 PM)Yaldaram Wrote: [ -> ]In global.css;
.reputation_positive {
    color: green;
}


ive installed this
http://mods.mybb.com/view/thank-you-like-system
and im printing off
Thanks Received: 1 in 1 posts
on top of the Reputation: 1
would that be in the css ? because i wanna make that 1 green has well
You may wrap the Thanks given with its class, like this;
Thanks Received: <div class="reputation_positive">1</div> in 1 posts

You have to edit this in postbit template I think.
(2011-04-26, 09:43 PM)nick1200 Wrote: [ -> ]
(2011-04-26, 09:35 PM)Yaldaram Wrote: [ -> ]In global.css;
.reputation_positive {
    color: green;
}


ive installed this
http://mods.mybb.com/view/thank-you-like-system
and im printing off
Thanks Received: 1 in 1 posts
on top of the Reputation: 1
would that be in the css ? because i wanna make that 1 green has well

That part is not templated. To change the color either change it in the thankyoulike language file and wrap it with <span class="reputation_positive"> or edit it in the inc/thankyoulike.php file in the postbit_udetails function.

In a future version I'll move that bit to the templates too so its easier to edit.