MyBB Community Forums

Full Version: Removed Calendar from Header
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, 

I removed the calendar from the header template a while back, but I was foolish and didn't make a backup..

Does anyone have the correct HTML to put in the template? 
I still have the calendar in the manage calendars section.

Thanks in Advance,

Vivi
MyBB's default theme (version 1.6) uses code like below for the top menu items
<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
</ul>
</div>
Hi, thank you.

I've added the Calendar, only there's like a broken link image infront of it, do you know what it is?

www.1operators.com
test, pass: test123
^ remove image part from that calender link
<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
change to:
<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
Thank you very much!