Twenty Ten テーマの 右部の幅を変更
WordPressの Twenty Ten テーマで、右のメニューの幅を変えたい場合は、#secondary の width の値を変えて右メニューの横幅を決めます。
そのままだと、メニューがメインコンテンツの下にずれてしまうので、 #containerの “margin:” の2つ目の数値を増やした(または減らした)幅分だけ差し引き(または加える)ます。
/*LAYOUT: Two columnsDESCRIPTION: Two-column fixed layout with one sidebar right of content*/
#container { float: left; margin: 0 -270px 0 0; width: 100%;}#content { margin: 0 280px 0 20px;}#primary,#secondary { float: right; overflow: hidden; width: 250px;}#secondary { clear: right;}#footer { clear: both; width: 100%;}