
find라는 폴더안에 style.css를 해놧는데
이 css파일을 첨부하는 방법을 모르겟네요
Copy
<?php
include_once('./_common.php');
if (G5_IS_MOBILE) {
include_once(G5_MOBILE_PATH . '/find/find.php');
return;
}
if (!$is_admin && $group['gr_device'] == 'mobile')
alert($group['gr_subject'] . ' 그룹은 모바일에서만 접근할 수 있습니다.');
$g5['title'] = "파트너찾기";
include_once('./_head.php');
include_once(G5_LIB_PATH . '/latest.lib.php');
$search = addslashes($_GET["search"]);
//var_dump($search);
?>
<!-- 파트너찾기시작 -->
<style> #wrapper_title {
|
답변 1개 / 댓글 1개
채택된 답변
+20 포인트
jbsstyle
4년 전
<?php
add_stylesheet('<link rel="stylesheet" href="'.G5_URL.'/find/style.css">', 0);
?>
답변에 대한 댓글 1개
답변을 작성하려면 로그인이 필요합니다.