
Header image display improperly when style type ‘fluid‘. fluid スタイルタイプを選択した場合に、ヘッダー画像が、正常に表示されない
Solution 解決策
Please open functions.phpline:2568
from
1 2 3 4 5 6 |
extract( $args, EXTR_SKIP ); if(raindrops_warehouse_clone("raindrops_style_type") == 'doc3'){ $width = 'width:100%'; }else{ $width = 'width:'.$raindrops_document_width.'px'; } |
to change below
1 2 3 4 5 6 |
extract( $args, EXTR_SKIP ); if(raindrops_warehouse_clone( "raindrops_page_width" ) == 'doc3' ){ $width = 'width:100%'; }else{ $width = 'width:'.$raindrops_document_width.'px'; } |