I solved my "problem" with the help of Roscius ...
I created three categories that I wanted it to be displayed stamps.
Free Shipping (ID 14)
New (ID 16)
Today Only (ID 17)
Added products in the categories.
In list.phml file that is in app / design / frontend / your-theme / your-theme / template / catalog / product
There is a code - (in my case at line 90)
<li class="item<?php if(($i-4)%$_columnCount==0): ?> first<?php elseif($i%$_columnCount==0): ?> last<?php endif; ?>">
After the above code added
<?php $categoryIds = $_product->getCategoryIds();
if ( in_array('14',$categoryIds))
echo '<div class="selo-list"><img src="/media/loja/selo-frete.png" alt="Frete Grátis"></div>';
elseif ( in_array('16',$categoryIds))
echo '<div class="selo-list"><img src="/media/loja/selo-so-hoje.png" alt="Só Hoje"></div>';
elseif ( in_array('17',$categoryIds))
echo '<div class="selo-list"><img src="/media/loja/selo-novo.png" alt="Novo"></div>';
?>
My CSS looks like this
.selo-list {
position:absolute;
margin-left:15px;
top:170px;
}
Thank You Roscius and community.