모바일 텝메뉴 채택완료
이렇게 만들어줬는데 안나옵니다...
공백만 생기네요 뭐가 문제일까요
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
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');
?>
$(function () {
$(".tab_content").hide();
$(".tab_content:first").show();
$("ul.tabs li").click(function () {
$("ul.tabs li").removeClass("active").css("color", "#333");
//$(this).addClass("active").css({"color": "darkred","font-weight": "bolder"});
$(this).addClass("active").css("color", "darkred");
$(".tab_content").hide()
var activeTab = $(this).attr("rel");
$("#" + activeTab).fadeIn()
});
});
if(defined('_INDEX_')) { // index에서만 실행
include G5_MOBILE_PATH.'/newwin.inc.php'; // 팝업레이어
} ?>
css 부분
ul.tabs { margin: 0; padding: 0; float: left; list-style: none; height: 32px; border-bottom: 1px solid #eee; border-left: 1px solid #eee; width: 100%; font-family:"dotum"; font-size:12px; } ul.tabs li { float: left; text-align:center; cursor: pointer; width:82px; height: 31px; line-height: 31px; border: 1px solid #eee; border-left: none; font-weight: bold; background: #fafafa; overflow: hidden; position: relative; } ul.tabs li.active { background: #FFFFFF; border-bottom: 1px solid #FFFFFF; } .tab_container { border: 1px solid #eee; border-top: none; clear: both; float: left; width: 248px; background: #FFFFFF; } .tab_content { padding: 5px; font-size: 12px; display: none; } .tab_container .tab_content ul { width:100%; margin:0px; padding:0px; } .tab_container .tab_content ul li { padding:5px; list-style:none } ; #container { width: 249px; margin: 0 auto; }
답변 1개
답변을 작성하려면 로그인이 필요합니다.
로그인

