MyBB Community Forums

Full Version: Need to change color of powered by mybb
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Go to Here
Since 1.8.7 released, It's just like gone with my theme. I'ld like to show it with contrast color.
you can add style="color: #000" in anchor tag from your footer template if you only want to change color for MyBB
(2016-04-20, 04:30 PM)Dark-Power-Invader Wrote: [ -> ]you can add style="color: #000" in anchor tag from your footer template if you only want to change color for MyBB
It was fine but when logged in it changes own color to absolutely white. Where is footer template of after logged in?
there is no template for logged in footer, footer remains same, try to hard reload your forum with ctrl+f5.
I tryed. Its still same...Or is it just for me???
well i am not getting you changed that line it still same "Powered By <a original-title="" href="http://www.mybb.com" target="_blank">MyBB</a>"

you need to make it "Powered By <a original-title="" style="color: #000" href="http://www.mybb.com" target="_blank">MyBB</a>"
Your site seem to be down from here - even though http://www.downformeoreveryone.com/ said it was up.

Anyway, if you cannot find a solution for your question yet ...

1. Go to http://clearskymn.tk/admin/index.php?mod...-templates (ACP > Templates & Style > Templates).

2. Click on "Expand Template" on the template you wished to change.

[Image: 8J71SnJ.png]

3. Look for "Footer Templates" and click "Expand".

4. Look for "footer" and click "Options > Full Edit".

[Image: F3Ewldr.png]

5. Look for code similar to below (I don't know what you theme used but this is the default).

{$lang->powered_by} <a href="http://www.mybb.com" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a href="http://www.mybb.com" target="_blank">MyBB Group</a>

6. Change it to the code below. Notice the new code? Change it to your liking! Smile.

<span style="color:white;">{$lang->powered_by} <a style="color:white;" href="http://www.mybb.com" target="_blank">MyBB{$mybbversion}</a>, &copy; 2002-{$copy_year} <a style="color:white;" href="http://www.mybb.com" target="_blank">MyBB Group</a>.</span>