MyBB Community Forums

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

I'm using the Dark 1.8 theme, I want to be able to change the images in the header menu (Portal, members, calender) and all them, I want to be able to change the image at the side of the text.

The code is

<li><a href="http://dizzygaming.net/showthread.php?tid=40" class="help">Forum Rules</a></li></ul>


So where am I mean't to change the image.
in global.css of your theme.....  find the foll. codes and add individual image codes to them to change the images... also you need to upload the new images to your server....

#logo ul.top_links a.search {
	background-position: 0 0;
}

#logo ul.top_links a.memberlist {
	background-position: 0 -20px;
}

#logo ul.top_links a.calendar {
	background-position: 0 -40px;
}

#logo ul.top_links a.help {
	background-position: 0 -60px;
}

#logo ul.top_links a.portal {
	background-position: 0 -180px;
}
Thanks for that man