This commit is contained in:
harukin 2018-11-23 17:54:41 +09:00
parent 07d53778b7
commit 1be5fe4087

View File

@ -106,12 +106,6 @@ if (! $shadow)
$shadow = '0';
if (! $converse_width)
$converse_width = '';
if (! $converse_widtd){
$hoge = intval($converse_width);
$converse_widtd = ($hoge * 2);
$converse_widtd .= "px";
$converse_widts = "$converse_width" . "px";
}
if(! $top_photo)
$top_photo = '3rem';
if(! $reply_photo)
@ -136,6 +130,11 @@ if(file_exists('view/theme/plusfuture/css/style.css')) {
$aside_width = 288;
$hoge = intval($converse_width);
$converse_widtd = ($hoge * 2);
$converse_widtd .= "px";
$converse_widts = "$converse_width" . "px";
// left aside and right aside are 285px + converse width
$main_width = (($aside_width * 2) + intval($converse_width));