Header image display improperly when style type ‘fluid‘.
fluid スタイルタイプを選択した場合に、ヘッダー画像が、正常に表示されない
*Solution 解決策
Please open functions.php
line:2568
from
[php firstline=”2568″ highlight=”2569″]
extract( $args, EXTR_SKIP );
if(raindrops_warehouse_clone(“raindrops_style_type”) == ‘doc3’){
$width = ‘width:100%’;
}else{
$width = ‘width:’.$raindrops_document_width.’px’;
}
[/php]
to change below
[php firstline=”2568″ highlight=”2569″]
extract( $args, EXTR_SKIP );
if(raindrops_warehouse_clone( “raindrops_page_width” ) == ‘doc3’ ){
$width = ‘width:100%’;
}else{
$width = ‘width:’.$raindrops_document_width.’px’;
}
[/php]
This bug will be fixed ver 0.983.
Thank you.