Add a Recent Posts link to the navigation bar

Add a Recent Posts link to the navigation bar

Is there any way to make the Recent Posts link stand out from the other links, eg giving it a different color from the other ones?
 
Got it. In case anyone else is trying to do it, this works (change the color to suit):

Code:
<xen:if is="{$visitor.user_id}">
        <li><a href="{xen:link find-new/posts, '', 'recent=1'}" style="color: #F9D2A1" rel="nofollow">{xen:phrase recent_posts}</a></li>
    </xen:if>

It only changes the color for logged in members, but that's what I wanted.
 
Last edited:
thanks for pointing me in the direction of this modification Brogan. If I add the Recent Posts link per the mod how would I delete the New Posts link so we will only have the one link?

Bart
 
@Brogan i search this in my template and it doesnt exist which is odd as before i upgraded to 1.5.4 and updated my theme to 1.5.3 recent posts worked fine and now its gone
 
Top Bottom