index.php
geeklog/public_html/admin/plugins/filemgmt/index.php
227行
$display .= '<td><input type="file" name="uploadfile" size="40" maxlength="200"></td></tr>';
278行
$display .= '<input type="file" name="newfile" size="40" maxlength="100">';
291行
$display .= '<input type="file" name="newfileshot" size="40" maxlength="60" ></td></tr>';
入力エリアとボタンサイズの調整
【解説】管理者メニューからの画面。227行カテゴリ新規作成画面の画像入力BOX。278行ファイル選択のテキスト入力BOX、ボタンのサイズ。291行サムネール画像の以下略
227行
$display .= '<td><input type="file" name="uploadfile" size="40" maxlength="200"></td></tr>';
↓
$display .= '<td><input type="file" name="uploadfile" size="40" maxlength="200" class="input-file"></td></tr>';278行
$display .= '<input type="file" name="newfile" size="40" maxlength="100">';
↓
$display .= '<input type="file" name="newfile" size="40" maxlength="100" class="input-file">';291行
$display .= '<input type="file" name="newfileshot" size="40" maxlength="60" ></td></tr>';
↓
$display .= '<input type="file" name="newfileshot" size="40" maxlength="60" class="input-file"></td></tr>';入力エリアとボタンサイズの調整
【解説】管理者メニューからの画面。227行カテゴリ新規作成画面の画像入力BOX。278行ファイル選択のテキスト入力BOX、ボタンのサイズ。291行サムネール画像の以下略
