I want the space the arrow is pointing to gone if its possible. Here is the code in that template:
Code: Select all
<ul style="list-style: none;">
<!-- BEGIN left_blog_links -->
<li style="font-weight: normal; padding-bottom: <!-- IF left_blog_links.S_LAST_ROW -->6<!-- ELSE -->4<!-- ENDIF -->px;">
<!-- IF left_blog_links.URL == 'spacer' && left_blog_links.NAME == 'spacer' --> <!-- ELSE -->» <a href="{left_blog_links.URL}">{left_blog_links.NAME}</a><!-- ENDIF -->
</li>
<!-- END left_blog_links -->
you can see where the spacer is placed. I tried taking it out and having this as the code:
Code: Select all
<!-- BEGIN left_blog_links -->
<li style="font-weight: normal; padding-bottom: <!-- IF left_blog_links.S_LAST_ROW -->6<!-- ELSE -->4<!-- ENDIF -->px;">
» <a href="{left_blog_links.URL}">{left_blog_links.NAME}</a>
</li>
<!-- END left_blog_links -->
That did not work. Instead it came up with the word "Spacer" as a link in the list. That is not quite what i wanted either lol. Any help would be great, thanks.
