Mason K.

Well-Known Member
I have a few more questions:
1.How can I add FA Icons to the sub-forums listing, similar to TAZ?
2. What template do I have to touch in order to add an FA Icon to the terms and rules? I already know how to add one I just need to know where.
3.I don't know much about classes yet, so can someone point me in the proper direction? I am specifically looking at classes so that I can edit the color of a button i've place in my footer.
4.Where and how could I replace/add sprites to the user panel, alerts, and conversation buttons in the nav bar?

Thanks in advance!
 
1.) extra.css:
Code:
.subForumList li .unread .nodeTitle:before
{
  font-family: FontAwesome;
  color: #000;
  margin-right: 5px;
  content: "\f0fc";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: relative;
  top: 1px;
}

2.) footer template, towards the bottom look for:
Code:
      <xen:hook name="footer_links_legal">
         <xen:if is="{$tosUrl}"><li><a href="{$tosUrl}">{xen:phrase terms_and_rules}</a></li></xen:if>
         <xen:if is="{$xenOptions.privacyPolicyUrl}"><li><a href="{$xenOptions.privacyPolicyUrl}">{xen:phrase privacy_policy}</a></li></xen:if>
       </xen:hook>

I suppose it makes sense to add these in sense we have the other ones active. I'll include this on the next release.

For the button in the footer, you have this:

Code:
<a class="@xbcolor" href="http://www.pokevolution.net/donate">Join Now!</a>

Change it to something like:

Code:
<a class="button" href="http://www.pokevolution.net/donate">Join Now!</a>

Then you can target it specifically if you need to by adding this to extra.css:

Code:
.footerBlock .button { background-color: #FFF; }
Although if you fix the class you may not need to adjust anything.
 
A specific forum? Or the font overall?

Style Properties -> [XB] General Setup / Primary/Secondary fonts covers the bulk of the style.

Secondary I use for headers/navigation/sidebar headings ect
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back