MyBB Community Forums

Full Version: Change default icons? (Like Calendar)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey Community,

I'd like to know how to change the Icons on the top of the Forum. I just replaced the old ones with some new, but nothing changed. Do you know any solution?

Regards.
go to your theme > global css -> use search function and find "calendar" for example. Below that add:

#logo ul.top_links a.newpagename {
background: url(link to your icon.png) center left no-repeat;
}

and on header template, add this

<li><a href="someurl" class="newpagename">Some Page Name</a></li>
Thanks, worked perfectly.