와싸네 메뉴네이게이션 사용시 상단 홈 기타 생기는거 없애려면 어떻게 해야 해용?? 채택완료
https://sir.kr/g5_skin/14365?sfl=wr_subject%7C%7Cwr_content&stx=%EB%A9%94%EB%89%B4" target="_blank">와싸네네비게이션메뉴 스킨 주소
아래는 회원가입 로그인이미지입니다. 원래 head.php 상단에 있는거구용.
그런데 메뉴네이게이션 사용했는데.... 홈 기타가 위에 생겼네요...
----------------------------------------------------------------------------------------------------------------------------------
홈페이지 소스보기 하니까 sub_history 더라구용??
-------------------------------------------------------------------------------------------------------------------------------
와싸네메뉴 css보니깐요 history 부분인데 여긴 스타일 지정해주는곳이라서.. 아닐건데...
/*네비게이션 사용 클래스*/ .sub_visual {width: 100%;height: 80px;background: #eee;} .sub_history {width: 100%;border-bottom: 0px solid #ddd;border-top: 0px solid #ddd;text-align: right;} .sub_history .hist_depth1 >li {display: inline-block;padding-left: 25px;margin-left:15px;color: #666;background: url("/theme/basic/img/arrow_btn.png") 100% no-repeat;background-position:left center;} .sub_history .hist_depth1 >li:first-child {margin-left: 0;padding-left: 0;background: none;} .sub_history .hist_depth1 >li a {padding: 10px 0;display: block;} .sub_history .hist_depth1 .active {font-weight: 600;color: #444;position: relative;} .sub_history .hist_depth1 .active:hover {color: #25649e;} .sub_history .hist_depth1 .active:hover .hist_depth2 {display: block;} .sub_history .hist_depth2 {display:none;position: absolute;top:35px;right: 0;width: 130px;text-align: center;z-index: 99;border: 1px solid #ddd;font-size: 0.95em;} .sub_history .hist_depth2 li a {display: block;padding: 8px 10px;background: #fff;color:#333;font-weight: normal;border-bottom: 1px solid #ddd;} .sub_history .hist_depth2 li a:hover {background: #eee;} .sub_history .hist_depth2 li:last-child a {border: 0;}
----------------------------------------------------------------------------------------------------------------------------------
head.php 부분에는
if (G5_IS_MOBILE) { include_once(G5_THEME_MOBILE_PATH.'/head.php'); return; }
include_once(G5_THEME_PATH.'/head.sub.php'); include_once(G5_LIB_PATH.'/latest.lib.php'); include_once(G5_LIB_PATH.'/outlogin.lib.php'); include_once(G5_LIB_PATH.'/poll.lib.php'); include_once(G5_LIB_PATH.'/visit.lib.php'); include_once(G5_LIB_PATH.'/connect.lib.php'); include_once(G5_LIB_PATH.'/popular.lib.php'); include_once(G5_LIB_PATH.'/tab.lib.php'); //tab.lib.php 확장 ?> viewNav(); ?>
이렇게 넣었고 메뉴 넣을 부분에
viewMenu();?>
이렇게 넣었습니다..
-----------------------------------------------------------------------------------------------------------------
홈 기타는 왜 생겼는지 혹시 알고 계시면 도움부탁드릴게용^^
답변 3개
받으신게 제목을 보면 와싸네 메뉴관리+메뉴네비게이션 두개가 합쳐진 거라서 그렇습니다.
메뉴관리는 관리자 페이지 메뉴관리에서 생성한 상단 메뉴고
메뉴네비게이션은 home > 게시판 > 자유게시판 이런 식으로 출력되는 부분을 말하는 겁니다.

보통 저런 기능도 원하시는 분들이 많거든요. 필요 없다면 삭제하고 쓰셔도 됩니다.
동일한 개발자님이 예전에 배포하신 걸 보면 상단메뉴만 있는 것도 있습니다.
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
head.php 파일에 이거 지웠더니 위에 홈 기타는 생기지 않습니다..
viewNav(); ?>
이걸 왜 넣으라고 했을까요??? 안넣어도 나오긴 하던데.. ..
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
css 에서도 아래는 필요없으니 삭제하는걸루^^
저는 이미지로 작업을 해서용..^^ 감사합니다.