Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Is it possible to add icons to the start of the FA+ forum category strips like they're done on the pixelexit.com style?
View attachment 7213
(I've not downloaded FA+ yet, will start having a play with it tonight so sorry if this is really obvious either way!)
.block--category
{
.categoryTextLeft:before
{
font-family: FontAwesome;
font-weight: normal;
text-align: center;
margin-right: 5px;
}
}
.block--category1 .categoryTextLeft:before { content: "\f015"; }
.block--category6 .categoryTextLeft:before { content: "\f1d2"; }
.block--category12 .categoryTextLeft:before { content: "\f0fb"; }
.block--category16 .categoryTextLeft:before { content: "\f14c"; }
.block-header {
background: #102334 url('images/pagebg.png') repeat left center !important;
}
Russ do we add this code to Extra.Less in the templates?So.. I'll need a little time to get our CSS properly running on XF2, for now, you can easily get the icons:
Code:.block--category { .categoryTextLeft:before { font-family: FontAwesome; font-weight: normal; text-align: center; margin-right: 5px; } } .block--category1 .categoryTextLeft:before { content: "\f015"; } .block--category6 .categoryTextLeft:before { content: "\f1d2"; } .block--category12 .categoryTextLeft:before { content: "\f0fb"; } .block--category16 .categoryTextLeft:before { content: "\f14c"; }
Additionally, if you go to Style Properties -> Node/forum list and check: Node ID Helper (acp search: xbNodeIDHelper) it will show the category id numbers for only admins:
View attachment 7218
YesRuss do we add this code to Extra.Less in the templates?