MyBB Community Forums

Full Version: Change text color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Friends, hello .m.,

Does anyone know how to change this color:

[Image: 7s2fjmihr86xxd3an1y5.png]

Where it says--> Seiten (2)

Its white and the background is also white, please help friendsSmile
find .pagination .pages in global.css and add required color for it like below
.pagination .pages {color: #F48D00;
Change background/color of .pagination .pages in global.css
Thank you this worked, and now this color:
[Image: fc234ytlwqjcor4p53gv.png]

Does anyone know how to change it?
It's in showthread_ratethread. Find {$lang->thread_rating}, edit the wrapping CSS (may be in class or style).
(2013-07-05, 03:26 PM)Destroy666 Wrote: [ -> ]It's in showthread_ratethread. Find {$lang->thread_rating}, edit the wrapping CSS (may be in class or style).

I can't find it, I am a nooby, please tell me exactly where and howSad
(2013-07-05, 03:29 PM)Niggidea Wrote: [ -> ]
(2013-07-05, 03:26 PM)Destroy666 Wrote: [ -> ]It's in showthread_ratethread. Find {$lang->thread_rating}, edit the wrapping CSS (may be in class or style).

I can't find it, I am a nooby, please tell me exactly where and howSad
Go in your ACP, then "Templates & Style".
Open your theme's template and look for "show thread templates" here you will find "showthread_ratethread". Here's an image:
[Image: tut1.jpg]
Then open it and look for
{$lang->thread_rating}
This string recalls the word you want to edit, so change his style. For example, my code, which is the one of the default theme, is:
<strong style="float: left; padding-right: 10px;">{$lang->thread_rating}</strong>
So I just need to put a different style.