django + 2カラム + adsense 広告2

こっちの記事で書いたとおり
https://pyblog.takmi.jp/detail/21/

アフィリエイト広告 その他 あれこれを連ねるための 2カラム!
対応してみたものの...
django + bootstrap を使っているからこその "らしく" 変更するって難しい...

bootstrap 側の css をコメントして...


{% block extra_css %}


{% endblock %}

別もののシンプル css を読み込む。 微調整は後ほどやろう...

$ cat ../../../static/cms/css/custom.css

body{
width: 95%;
margin: 0 auto;
}
#header{
width: 95%;
}
#main{
width: 78%;
float: left;
}
#side{
width: 15%;
float: right;
}
#footer{
clear: both;
width: 95%;
}

それにしても。 がっつりやろうとすると覚えることたくさんだなぁ