MyBB Community Forums

Full Version: Change Icons up the top of the forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys I have provided an image:
[Image: iOXKm.png]

How do I change the Member List, Calendar and etc?

Thank you Smile
goto Admin CP >> Templates & Style >> Templates >> Your Theme's Templates >> Header Templates >> header and find the below code and change it as desired

<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>
(2012-12-05, 09:23 AM)mmadhankumar Wrote: [ -> ]goto Admin CP >> Templates & Style >> Templates >> Your Theme's Templates >> Header Templates >> header and find the below code and change it as desired

<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>

Thanks for the suggestion, this unfortunately does not work, I have tried changing the icons to my own custom made ones. Also how do I change where it redirects to?

Thank you Smile
Make sure you type the directory of your theme image correctly. And to change the link, just edit <li><a href="{$mybb->settings['bburl']}/calendar.php">
(2012-12-05, 12:54 PM)LimPong Wrote: [ -> ]Make sure you type the directory of your theme image correctly. And to change the link, just edit <li><a href="{$mybb->settings['bburl']}/calendar.php">

Thank you, an issue with the template is that I can only have a limited amount of subforums displayed it does this for example:
Sub Forums: Sports World, Innuendo, and 1 more.

The ", and 1 more." I'd like to replace and let the forum have as many subforums per parent forum that is needed.
I don't know much about website coding, I will be going further into it once i get my forums up somewhat how I like them.

Thank you Smile
In your admin cp, Board Settings > Forum Home Options

Subforums to show on Index listing
The number of subforums that you wish to show inside forums on the index and forumdisplay pages. Set to 0 to not show the subforum list

Make that number higher.
Solution found thank you to all who looked and replied Smile