폼메일 열면 하단 보내기 버튼이 잘 안보여서... 정보
폼메일 열면 하단 보내기 버튼이 잘 안보여서...본문
폼메일 열면 새창으로 폼메일 뜨잖아요
그런데 윈도우XP 서비스팩2 에서는 하단에 상태표시줄이 있어서
보내기 버튼이 잘 안보입니다
새창 사이즈를 조절해야 될것 같은데 어디서 하는거죠?
그런데 윈도우XP 서비스팩2 에서는 하단에 상태표시줄이 있어서
보내기 버튼이 잘 안보입니다
새창 사이즈를 조절해야 될것 같은데 어디서 하는거죠?
댓글 전체
/js/common.js 에서
// 폼메일 창
function popup_formmail(url)
{
opt = 'scrollbars=yes,width=417,height=385,top=10,left=20';
popup_window(url, "wformmail", opt);
}
// 폼메일 창
function win_formmail(mb_id, name, email)
{
win_open(g4_path+"/" + g4_bbs + "/formmail.php?mb_id="+mb_id+"&name="+name+"&email="+email, "winFormmail", "left=50, top=50, width=600, height=480, scrollbars=0");
}
여기에서 호출하는 자바에 맞춰서 수정하세요
여기서 수정하면 될듯 합니다! ^^^
// 폼메일 창
function popup_formmail(url)
{
opt = 'scrollbars=yes,width=417,height=385,top=10,left=20';
popup_window(url, "wformmail", opt);
}
// 폼메일 창
function win_formmail(mb_id, name, email)
{
win_open(g4_path+"/" + g4_bbs + "/formmail.php?mb_id="+mb_id+"&name="+name+"&email="+email, "winFormmail", "left=50, top=50, width=600, height=480, scrollbars=0");
}
여기에서 호출하는 자바에 맞춰서 수정하세요
여기서 수정하면 될듯 합니다! ^^^