How to Make Admin Posts Blog Comments
How to distinguish the admin posts by visitors in the blog, if friends who want to be different to make a comment on the blog posts, please follow the following steps.
As always please login to your dashboard and select elements.
Edit HTML
Temlate Expand Widget
Then find the code </body>
Then save the following code just above the code </body>
<script src='http://code.jquery.com/jquery-latest.js'/>
<!--admin comment -->
<script>
$(function() {
function highlight(){
$('.user.blog-author,.ssyby').closest('.comment-block')
.css('border', '1px solid #1919B3 ')
.css('background','#1919B3 url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiuH0o0NfOcAKvtH35TAnDGfjkAh4Se_tFvUc1EQGxZRbBShwUiIoT2IFSrQXRy89DecjXDFRlcW50eVfymZI51wxWik2INqJjDU1Mle1yGqBX8lIgRNXGzUo63o3La66rPqZIDZKu_N-A/s1600/admin2.png") no-repeat bottom right')
.css('padding', '10px');
}
$(document).bind('ready scroll click', highlight);
});
</script>
<!-- admin comment end-->
Then Save
If you want to change the backround please replace the blue code.
Reference:
http://hacking-proxy.blogspot.com
Posting Komentar