How to location html for RSS button (bottom-right)?:

CritiKiL

Active member
I am wanting to add more social network buttons of the same size next to it with links but I cannot find where that area is so that I can make my edits. Thanks in advance.
 
Edit the footer template.

For example, this is from my site where I have added a Twitter icon.
Rich (BB code):
<xen:if is="{$homeLink}"><li><a href="{$homeLink}">{xen:phrase home}</a></li></xen:if>
<li><a href="{$requestPaths.requestUri}#navigation">{xen:phrase go_to_top}</a></li>
<li><a href="https://twitter.com/#!/ClipTheApex" rel="nofollow" class="CTAfooterSocialMedia CTAtwitter" target="_blank" title="Follow us on Twitter">Twitter</a></li>
<li><a href="{xen:link forums/-/index.rss}" rel="alternate" class="globalFeed" target="_blank" title="{xen:phrase rss_feed_for_x, 'title={$xenOptions.boardTitle}'}">{xen:phrase rss}</a></li>
 
Top Bottom