rowedf
Customer
Hello, I read the "How To's" but this part is really vague to me:
How to add new navigation icons
First you'll want to find an icon you wish to use for your navigation link, it should be 32 x 32, you can open styles/fragzone/xenforo/sources/navhome.png for reference. For consistency sake save it navNAME and upload it into that directory(sources)
Next you'll need to find your navigation selector by viewing the source code (source code of what file). For example home, portal and forum are...
.navTabs .navTab.forums .navLink
.navTabs .navTab.home .navLink
.navTabs .navTab.portal .navLink
So in extra.css you'll add:
Code:
.navTabs .navTab.YOURTAB .navLink {
background: url("styles/fragzone/xenforo/sources/navICON.png") no-repeat scroll center 10px rgba(0, 0, 0, 0);
}
And you're done, if you need help finding an icon just post a request on the forums here
How to add new navigation icons
First you'll want to find an icon you wish to use for your navigation link, it should be 32 x 32, you can open styles/fragzone/xenforo/sources/navhome.png for reference. For consistency sake save it navNAME and upload it into that directory(sources)
Next you'll need to find your navigation selector by viewing the source code (source code of what file). For example home, portal and forum are...
.navTabs .navTab.forums .navLink
.navTabs .navTab.home .navLink
.navTabs .navTab.portal .navLink
So in extra.css you'll add:
Code:
.navTabs .navTab.YOURTAB .navLink {
background: url("styles/fragzone/xenforo/sources/navICON.png") no-repeat scroll center 10px rgba(0, 0, 0, 0);
}
And you're done, if you need help finding an icon just post a request on the forums here