WordpressのWP touchのデザインを変えたい
WordpressのWP touchだとul,ol,dt,ddといったタグが横幅狭く表示される。これを変えたい。
スタイルシートの場所は
wp-content/plugins/wptouch/themes/bauhaus/default/style.css
にあった。ファイルを開いて、以下の横幅設定を消せばよい。
.post-page-content h1, .post-page-content h2, .post-page-content h3, .post-page-content h4, .post-page-content h5, .post-page-content h6,/* .post-page-content dl, */ .post-page-content address { /* margin-left: 20px; margin-right: 20px; */ } .post-page-content ul, .post-page-content ol { /* margin-left: 15px; margin-right: 15px; */ list-style-type: circle; } .post-page-content li { /* margin-left: 10; margin-right: 10; */ padding-right: 0; padding-left: 0; }