Hi,
the default image formating is such:
img {
padding: 8px;
border:none;
} Now when my image is in this span I want it not to have padding.
<span class="article_img">
<input type="radio" name="image" value="">
<img class="no_padding" src="">
<a class="trinti_img" href="" id="naujiena16.jpg">
<img src=""></a>
</span> And I made code in css for no padding:
.no_padding
{
padding: none;
} And there still is that padding. I don't know what is wrong there. Can you help me?