【スマホで見た時、画像の文字の回り込みを解除する】
※メディアクエリの設定
480px以下の場合 ①回り込みなし ②幅100%表示 ③高さは自動

こんな場合の対処法!
子のスタイルシートに以下を記述する。参考URL:①http://happyizm.com/wordpress/broken_layout_sp/ ②https://yossense.com/css-for-smartphone/

/*——————————
スマホで画像の回り込み無しに
———————————*/
@media screen and (max-width: 480px){
img.alignleft{
float: none;
width : 100%;
height: auto;
}
img.alignright{
float: none;
width : 100%;
height: auto;
margin-left:0px;
}
}

※子テーマの設定方法:https://xn--8mrq80fdei.net/wordpress-lightning-child