묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
2005.06.24 15:38
회원가입시나 수정시 닉네임/ID /E-mail 은 중복체크를 하자나요 . 이름도 가능할까요?
$lang->msg_exists_nick_name = \
댓글 6
-
김태환
2005.06.24 17:06
아니 거서 seal 클릭하면 나오는화면요 TT -
조민
2005.06.24 17:18
빨간 점인지 별인지, 혹은 반짝인지 아무튼 그런 배경색이 보입니다.
로그인화면도 있내요... -
김태환
2005.06.24 17:19
네 맞아요 근데 문제는 페이지가 안뜨고 일부분만 뜬다는거죠 -__;;;;;;;;
주소입력창에서 다시 엔터치면 제대로나오구요.....
뭐가 문젠지 도통.. -
조민
2005.06.24 17:41
김태환님//
태그가 많이 틀렸내요..
님의 소스중에서...
<html>
<head></head>
<body>
<p><table width="520" border="0" cellpadding="5" cellspacing="0">
<tr align="left">
<td width="260"><head>
<script>
var sRepeat=null;
function doScrollerIE(dir, src, amount) {
if (amount==null) amount=10;
if (dir=="up")
document.all[src].scrollTop-=amount;
else
document.all[src].scrollTop+=amount;
if (sRepeat==null)
sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'+ '+ '," + amount + ")",100);
return false }
window.document.onmouseout = new Function("clearInterval(sRepeat);sRepeat=null");
window.document.ondragstart = new Function("return false");
</script>
</head>
<STYLE>
@font-face {font-family:a;src:url(http://kanggra.mizc.com/pul.ewf);}
body,td,tr,table{font-size:9pt; font-family:a; color:#686868; line-height:130%;}
A:link {font-family:a; font-size:9pt; color:#3D3D3D; text-decoration:none;}
A:visited {font-family:a; font-size:9pt; color:#3D3D3D; text-decoration:none;}
A:active {font-family:a; font-size:9pt; color:#3D3D3D; text-decoration:none;}
A:hover {font-family:a; font-size:9pt; color:#71A5CA; text-decoration:none;}
.notice_date {font-family:tahoma; color:#75A8C5; font-size:8pt}
</STYLE>
---------------------------------------------------------------
윗부분의 순서가 틀렸습니다.
예제-
<?
$_zb_url = "제로보드가 설치된 url";
$_zb_path = "제로보드가 설치된 절대경로";
include $_zb_path."outlogin.php";
?>
<html>
<head>
<STYLE>
@font-face {font-family:a;src:url(http://kanggra.mizc.com/pul.ewf);}
body,td,tr,table{font-size:9pt; font-family:a; color:#686868; line-height:130%;}
A:link {font-family:a; font-size:9pt; color:#3D3D3D; text-decoration:none;}
A:visited {font-family:a; font-size:9pt; color:#3D3D3D; text-decoration:none;}
A:active {font-family:a; font-size:9pt; color:#3D3D3D; text-decoration:none;}
A:hover {font-family:a; font-size:9pt; color:#71A5CA; text-decoration:none;}
.notice_date {font-family:tahoma; color:#75A8C5; font-size:8pt}
</STYLE>
<script>
var sRepeat=null;
function doScrollerIE(dir, src, amount) {
if (amount==null) amount=10;
if (dir=="up")
document.all[src].scrollTop-=amount;
else
document.all[src].scrollTop+=amount;
if (sRepeat==null)
sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100);
return false }
window.document.onmouseout = new Function("clearInterval(sRepeat);sRepeat=null");
window.document.ondragstart = new Function("return false");
</script>
</head>
<body>
테이블태그/외부로그인 삽입소스/ 기타 화면에 출력될 내용들...
</body>
</html>
이런식으로
<head></head>안에는 스타일시트와 자바스크립트 항목이 들어가야겠죠
그리고
<body></body>를 만들어서
안에 본격적인 태그를 써야하겠죠.. -
김태환
2005.06.24 19:43
감사합니다 조민님!! -
조민
2005.06.24 15:45