Phases
Active member
In the navbar <li>, the only way I can get an item to remain on the same line as everything else is if I put it inside the <a> tag. If I put it after, it drops down, if I put it before, the <a> block drops down.
How do I get around this?
For example, this is normal, navigation template code. :
If I do this, though, the TEST will drop down a line:
And if I do this, the "New Posts" link will drop down a line:
I can't seem to figure this out. Can someone help?
How do I get around this?
For example, this is normal, navigation template code. :
Code:
<li><a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li>
If I do this, though, the TEST will drop down a line:
Code:
<li><a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a>TEST</li>
And if I do this, the "New Posts" link will drop down a line:
Code:
<li>TEST<a href="{xen:link 'find-new/posts'}" rel="nofollow">{xen:if $visitor.user_id, {xen:phrase new_posts}, {xen:phrase recent_posts}}</a></li>
I can't seem to figure this out. Can someone help?