まずはCSS編です。
div#advertising2 {
display: none !important;
}
div.advertising2 {
display: none !important;
}
div#advertising3 {
display: none !important;
}
div.ad_frame {
display: none !important;
}
これでGoogleのテキスト広告とサイドバーの一番下のアメブロテキスト広告が消えます。
ヘッダー上の巨大バー広告とサイドメニューのウザイ画像広告はフリースペースに
<style>.headerBnrArea {padding:0 !important;display:none !important;}.subAdBannerArea{display:none !important;}.registArea{display:none !important;}li#barAd {visibility: hidden !important;}</style>
これを一気にコピペ。
お次はJavaScript編。こいつはフリープラグイン
<script src='http://stat100.ameba.jp/blog/js/apm001.js'></script>
<script type="text/javascript">
$(function(){
$(".headerBnrArea").remove();
$(".subAdBannerArea").remove();
$("#advertising2").remove();
$(".advertising2").remove();
$("#advertising3").remove();
$(".ad_frame").remove();
});
</script>