Moving the buttons in the News feed?

Ranger375

Well-known member
How do I move the recent activity and people you follow buttons (located at the bottom of the feed) to go above the feed. Most people on my board failed to notice it (i decided to move the news feed and make it a tab since it was overlooked also)
 
Open the news_feed_page template and move this:
Code:
    <div class="extra">
        <a href="{xen:link account/following}" class="button smallButton">{xen:phrase people_you_follow}</a>
        <a href="{xen:link recent-activity}" class="button smallButton">{xen:phrase recent_activity}</a>
    </div>

Below this:
Code:
<div class="newsFeed">

So the end result is this:
Code:
<div class="newsFeed">
    <div class="extra">
        <a href="{xen:link account/following}" class="button smallButton">{xen:phrase people_you_follow}</a>
        <a href="{xen:link recent-activity}" class="button smallButton">{xen:phrase recent_activity}</a>
 
Top Bottom