ワードプレス初心者のカスタマイズ 作業19
WordPressのテーマを直接変更
画像枠線を消去
ワードプレスのテーマTwentyElevenの画像の枠線を消去します。
スタイルシート(style.css)の編集
管理画面『外観』>>『テーマ編集』からスタイルシート(style.css)を開いて下さい。
※スタイルシート(style.css)を変更する前に必ずバックアップしてください。
※小テーマを使用している方は、小テーマ側のスタイルシートを編集して下さい
テーマを更新(アップデート)した場合は、テーマに加えたカスタマイズがすべて失われます。テーマを修正する場合、子テーマの利用を検討してください。子テーマを使用すればテーマの変更は確実に保持されます。
変更前
『/* Image borders */』 箇所の”border-bottom“と”border-top“を変更します。
Ctrl+Fで『/* Image borders */』を検索するとすぐに見つかります。
/* Image borders */ img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */ border: 1px solid #ccc; /* border(枠線)の太さ変更 */ padding: 6px; /* padding(余白)の数字変更 */ max-width: 97.5%; max-width: calc( 100% - 14px ); }
変更後
/* Image borders */ img[class*="align"], img[class*="wp-image-"], #content .gallery .gallery-icon img {/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */ border: 0px; padding: 0px; max-width: 97.5%; max-width: calc( 100% - 14px ); }
数字を変更する事で画像の枠線が消せました。
テーマ更新
新しいバージョンに「テーマを更新」した場合は、テーマに加えたカスタマイズがすべて失われます。
テーマを修正する場合、子テーマの利用をした方がよさそうですが、勉強中なので子テーマのやり方がわかりません。
他のサイトで調べてください。
WordPress 作業カテゴリ