画像枠を削除する

WordPressの「Twenty Eleven」テーマで記事に画像を挿入すると、画像に5px位の枠が付いてくる。邪魔になるため枠を消す方法を探して試行錯誤しながら次の方法で消すことができた。
方法はstyle.cssファイルで次の赤コードの部分を消すかコメントにする。
/* 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 #ddd;
    padding: 6px;
*/
}