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.
<xen:if is="@xb_sl_twitter"><li class="xbslTwitter"><a href="@xb_sl_twitter" target="_blank" title="Twitter"><i class="fa fa-twitter fa-fw"></i></a></li></xen:if>
<i class="fa fa-twitter fa-fw"></i>
<img src="@imagePath/xenforo/twittericon.png" />
You could with a little bit of work:
Open the template: xb_social_links
Each line will look like this:
Code:<xen:if is="@xb_sl_twitter"><li class="xbslTwitter"><a href="@xb_sl_twitter" target="_blank" title="Twitter"><i class="fa fa-twitter fa-fw"></i></a></li></xen:if>
You can just replace the :
font awesome part with something like so:Code:<i class="fa fa-twitter fa-fw"></i>
Code:<img src="@imagePath/xenforo/twittericon.png" />
Hope that helps.
<xen:if is="@enableResponsive">
/* Hide it on tablets */
@media (max-width:@maxResponsiveMediumWidth)
{
html .extraFooter
{
display: none;
}
}
/* Hide it on smaller devices */
@media (max-width:@maxResponsiveNarrowWidth)
{
html .extraFooter
{
display: none;
}
}
</xen:if>