영카트 메인 컨텐츠와 분류게시판 컨텐츠 위치를 바꾸고 싶습니다.
본문
메인 컨텐츠 위치와 분류게시판 위치를 조금 바꾸고 싶은대
메인일땐 #container{width:1000px;} 을 주고 싶고
분류게시판 일때 #container{widht:700px;}을 주고 싶습니다.
shop.head.main.php파일과 shop.head.php을 두개 만들어서
메인일때 shop.head.main.php 파일을 뿌려주고 싶은대 어떻게 해야 하나요 ㅠ
답변 1
if(defined('_INDEX_')) { // index에서만 실행 (shop일때는 _INDEX_SHOP_ 도 사용가능)
include_once("경로/shop.head.main.php");
} else { //index가 아닐때 실행
include_once("경로/shop.head.php");
}
include_once("경로/shop.head.main.php");
} else { //index가 아닐때 실행
include_once("경로/shop.head.php");
}
답변을 작성하시기 전에 로그인 해주세요.