MyBB Community Forums

Full Version: Where can I change the lower panel icons?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
They're not in the global.css
Where have they moved?
I can't even find the icon files for them Huh

I'm talking about panel.lower
(2015-02-03, 12:11 PM)Gohanbby Wrote: [ -> ]I can't even find the icon files for them  Huh


They are in a sprite image in your image folder named as headerlinks_sprite.png

http://community.mybb.com/images/headerlinks_sprite.png


(2015-02-03, 12:11 PM)Gohanbby Wrote: [ -> ]They're not in the global.css

the above mentioned sprite is added as background to all menu items in "#header ul.menu li a"

and the individual icons are loaded by defining its position

#panel .lower ul.panel_links a.usercp {
	background-position: 0 -120px;
}

#panel .lower ul.panel_links a.modcp {
	background-position: 0 -140px;
}

#panel .lower ul.panel_links a.admincp {
	background-position: 0 -160px;
}
MyBB 1.8 uses sprited images for icons. - The icons for panel.lower are in headerlinks_sprite.png from /images/ folder.

EDIT: mmadhankumar was faster and more detailed. Smile
Oh wow, how could I miss that one. Big Grin
Thanks guys