관리자모드 도움말이 뒤로 숨을 때 정보
관리자모드 도움말이 뒤로 숨을 때
본문
말로 표현하기가 좀 힘들군요..
말 그대로 관리자 모드에서 도움말 버튼(물음표 아이콘)을 누르면 나오는 도움말 있죠?
그게 위치에 따라 에디터 뒤로 숨을 때가 있습니다..
이럴때는
/adm/admin.lib.php 를 열어서 help 펑션 정의를 찾아
빨간 부분을 추가해 주세요...
function help($help="", $left=0, $top=0)
{
global $g4;
static $idx = 0;
$idx++;
$help = preg_replace("/\n/", "<br>", $help);
$str = "<img src='$g4[admin_path]/img/icon_help.gif' border=0 width=15 height=15 align=absmiddle onclick=\"help('help$idx', $left, $top);\" style='cursor:hand;'>";
//$str .= "<div id='help$idx' style='position:absolute; top:0px; left:0px; display:none;'>";
$str .= "<div id='help$idx' style='position:absolute; display:none; z-index:100;'>";
$str .= "<div id='csshelp1'><div id='csshelp2'><div id='csshelp3'>$help</div></div></div>";
$str .= "</div>";
return $str;
}
너무도 간단한 팁이지만 혹시 필요하신 분들이 있을지도..^^
2
댓글 1개
