How to remove First Image Blogger

Views

Use Jquery

/* Remove FirstImage */
$(function(){$(".separator:first").remove();$(".post-body > img:first").remove()});
Use Javascript
<script type='text/javascript'>
//<![CDATA[
document.querySelectorAll(".separator")[0].style.display= "none";
//]]>
</script>
Use CSS By adding CSS below above ]]></b:skin> or </style>.
.separator:nth-of-type(1) {
    display:none;
    visibility:hidden;
}