웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
Sketchbook5 레이아웃과 관리자메뉴 충돌 해결
2013.03.20 10:22
<script cond="$layout_info->static!='Y'" type="text/javascript">
jQuery(function($){
$('#lnb').css({position:'fixed'});
$(window).scroll(function(){
if($(this).scrollTop() > $('#hd').height()-33) {
$('#hd').css('paddingTop',36).find('#gnb_wrp').css({position:'fixed',top:0,width:$('#xe').width()});
$('#hidden_logo:hidden').fadeIn();
} else {
$('#hd').css('paddingTop',0).find('#gnb_wrp').css({position:'static',width:'auto'});
$('#hidden_logo').hide();
};
});
});
</script>
<!--@end-->
jQuery(function($){
$('#lnb').css({position:'fixed'});
$(window).scroll(function(){
if($(this).scrollTop() > $('#hd').height()-33) {
$('#hd').css('paddingTop',36).find('#gnb_wrp').css({position:'fixed',top:0,width:$('#xe').width()});
$('#hidden_logo:hidden').fadeIn();
} else {
$('#hd').css('paddingTop',0).find('#gnb_wrp').css({position:'static',width:'auto'});
$('#hidden_logo').hide();
};
});
});
</script>
<!--@end-->
layouts/sketchbook5/layout.html 파일에서 위 부분을 찾으신 다음,
14번째/15번째줄 사이에(</script>와 <!--@end--> 사이)
<script cond="$layout_info->static!='Y' && $logged_info->is_admin=='Y'" type="text/javascript">
jQuery(function($){
$('#lnb').css({position:'fixed'});
$(window).scroll(function(){
if($(this).scrollTop() > $('#hd').height()-33) {
$('#hd').css('paddingTop',36).find('#gnb_wrp').css({position:'fixed',top:30,width:$('#xe').width()});
$('#hidden_logo:hidden').fadeIn();
} else {
$('#hd').css('paddingTop',0).find('#gnb_wrp').css({position:'static',width:'auto'});
$('#hidden_logo').hide();
};
});
});
</script>
jQuery(function($){
$('#lnb').css({position:'fixed'});
$(window).scroll(function(){
if($(this).scrollTop() > $('#hd').height()-33) {
$('#hd').css('paddingTop',36).find('#gnb_wrp').css({position:'fixed',top:30,width:$('#xe').width()});
$('#hidden_logo:hidden').fadeIn();
} else {
$('#hd').css('paddingTop',0).find('#gnb_wrp').css({position:'static',width:'auto'});
$('#hidden_logo').hide();
};
});
});
</script>
이 소스코드를 추가해 주시면 됩니다.
관리자바가 활성화 되어있을경우
이렇게 아래로 스크롤해도 메뉴가 관리자바에 가려지지 않게 됩니다!
단 관리자바 숨기기 애드온 사용시 오작동합니다.
고맙습니다. 잘 되네요.