MyBB Community Forums

Full Version: Menu item uses not wanted sprites
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Im trying to add a new link in my header menu, along with search, memberslist etc. But as soon as i add a link, it will add the 'magnifier' icon, because its coded to look in the headerlinks sprite. How can i remove that icon?


[Image: 6c1049a76ab64451f257b169d9989d26.png]
Forum url?
1. First add a unique css selector for the new menu item ex. class="home"
2. In global.css add the new css selector and change the background image.
3. background-image: none; will simply remove the icon or you can specify a new icon using a url


#logo ul.top_links a.home {
background-image: url(path to the icon here);
}