@mr_green @opacity101 Thanks!!
@ongcp
Oh yes, I overlooked the favicon...thanks for reminding!
As for the "Featured" image, you need to open up the loop-ad_listing.php. Right below <div class="post-block">, add these code:
<?php if(is_sticky($post_ID) == true) echo '<span class="featured-ribbon"></span>'; else echo ''; ?>
This checks if the ad is sticky, then add a class "featured-ribbon" for styling.
Then on style.css, add:
/* Add Ribbon to featured ad on ad loop */
.featured-ribbon{
display:block;float:left; height:60px;margin:-18px 0px 0px -18px;padding:0;width:60px;
position:absolute;
background:url("images/featured_ribbon_60.png") no-repeat scroll right top transparent; z-index:999;
}
[IMG][/IMG]
featured_ribbon_60.png Upload this image to your images folder too. That's it!
I hope this works for you, as I did it long time back and i have done a lot of modification on my source files in between.