Remove Friendster Ads With CSS Injection
November 29th, 2008
19 comments
If you feel all ads around your Friendster profile so annoying, you can try this simple CSS injection to remove it all. Login to your account, go to Edit Profile and add this CSS code in Costumize CSS Box. This code will try to hidden all Class and ID that contains ads.
Code 1
/* Hide Google Search */ #search form { display : none !important; } /* Hide Friendster Classifieds */ #marketing {display:none!important;} /* Hide Footer */ #footer_container {display:none!important;} /* Hide Footer link only */ #footer a {display:none!important;} |