• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

Icons block to Sidebar

Allan

Well-known member
Icons block to Sidebar
______________
This add a little icons before title to block to sidebar

  • In "sidebar_online_users " template, find:
Code:
<h3>{xen:phrase staff_online_now}</h3>
Replace by
Code:
<h3><img src="@imagePath/xenforo/icons/staff.png" alt="" /> {xen:phrase staff_online_now}</h3>
  • Same template, find:
Code:
<h3><a href="{xen:link online}" title="{xen:phrase see_all_online_users}">{xen:phrase members_online_now}</a></h3>
Replace by:
Code:
<h3><img src="@imagePath/xenforo/icons/member.png" alt="" /> <a href="{xen:link online}" title="{xen:phrase see_all_online_users}">{xen:phrase members_online_now}</a></h3>
  • In "forum_list" template, find:
Code:
<h3>{xen:phrase forum_statistics}</h3>
Replace by:
Code:
<h3><img src="@imagePath/xenforo/icons/stats.png" alt="" /> {xen:phrase forum_statistics}</h3>
  • Upload staff.png (staff.webp ), member.png (member.webp )and stats.png (stats.webp )in "../styles/default/xenforo/icons/" forlder.
icons_us_1.webp icons_us.webp
 
Nice Allan. I would have personally went for characters for the staff and members online block and some kind of graph icon for the statistics. That said, you've set the foundation and I'll probably release some icons to compliment these enhancements. Nice job. :)
 
Nice Allan. I would have personally went for characters for the staff and members online block and some kind of graph icon for the statistics. That said, you've set the foundation and I'll probably release some icons to compliment these enhancements. Nice job. :)
Yes, I tried several more custom icons, but finally, most were simply the best :D
 
Top Bottom