MyBB Community Forums

Full Version: Edit the header like thid [READ]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I need my tabs to look like this

[Image: EiR9x2lfaM.png]
Create menu from either of these;
http://www.cssmenubuilder.com/home
http://cssmenumaker.com/
http://css3menu.com/

Upload images in ./images/ folder. CSS Styles in global.css stylesheet of your forum and for HTML find the following in your theme's "header" template;
			<div class="menu">
				<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>
			</div>

and Replace it with the HTML these websites created.
Wow yaldaram i did not know of such sites. thanks. i usually use online sites for things like tables etc but never thought about menus.