I would like to get rid of the underlined "photo" next to posted pictures and the "text" above the posted text.
Template section for text posts
{block:Text}
<div class="post text">
<span class="icon"><a href="{Permalink}">{lang:Text}</a></span>
<span class="meta">
<a href="/day/{Year}/{MonthNumberWithZero}/{DayOfMonthWithZero}/" class="timestamp"><b>{DayOfMonth}</b> {ShortMonth}</a> {block:IfDisqusShortname}<a href="{Permalink}#disqus_thread" class="count"></a>{block:IfDisqusShortname}
{block:IfShowNotes}{block:NoteCount}<a href="{Permalink}" class="count note">{NoteCountWithLabel}</a>{block:NoteCount}{block:IfShowNotes}
</span>
{block:Title}<span class="ttl"><a href="{Permalink}">{Title}</a></span>{/block:Title}
<div class="body">
{Body}
</div>
{block:RebloggedFrom}
<div class="source">
via <a href="{ReblogParentURL}">{ReblogParentTitle}</a>.
</div>
{/block:RebloggedFrom}
</div>
{/block:Text}
Template section for photo posts
{block:Photo}
<div class="post photo">
<span class="icon"><a href="{Permalink}">{lang:Photo}</a></span>
<span class="meta">
<a href="/day/{Year}/{MonthNumberWithZero}/{DayOfMonthWithZero}/" class="timestamp"><b>{DayOfMonth}</b> {ShortMonth}</a> {block:IfDisqusShortname}<a href="{Permalink}#disqus_thread" class="count"></a>{block:IfDisqusShortname}
{block:IfShowNotes}{block:NoteCount}<a href="{Permalink}" class="count note">{NoteCountWithLabel}</a>{block:NoteCount}{block:IfShowNotes}
</span>
{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{LinkCloseTag}
{block:Caption}
<div class="body">
{Caption}
</div>
{/block:Caption}
{block:RebloggedFrom}
<div class="source">
via <a href="{ReblogParentURL}">{ReblogParentTitle}</a>.
</div>
{/block:RebloggedFrom}
</div>
{/block:Photo}
How can I remove the text that labels what the post is?
<span class="icon"><a href="{Permalink}">{lang:Photo}</a></span>from the template? – Eight Days of Malaise Sep 14 '12 at 3:17