모바일게시판 검색창위치변경 채택완료
아티스트
4년 전
조회 3,164
그누5 모바일스킨 basic게시판 리스트페이지에 검색창이 하단에 위치해있는데 pc버전과 같이 리스트페이지 상단 카테고리 위에 검색창이 위치하려면 어느부분을 수정해야 하는지 알려주세요 list.skin.php 에
// 선택옵션으로 인해 셀합치기가 가변적으로 변함 $colspan = 2;
if ($is_checkbox) $colspan++;
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 add_stylesheet('', 0); ?>
전체 건
페이지
형광색 표기부분을
아래에 44줄에 위치했더니 옮겨지긴 하는데 검색이 안됩니다
댓글을 작성하려면 로그인이 필요합니다.
답변 1개
채택된 답변
+20 포인트
답변에 대한 댓글 3개
�
아티스트
4년 전
e
eyekiss
4년 전
아~ form 이 겹치네요..
<form name="fboardlist" id="fboardlist" action="<?php echo G5_BBS_URL; ?>/board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">
위로 소스를 이동하세요..
<form name="fboardlist" id="fboardlist" action="<?php echo G5_BBS_URL; ?>/board_list_update.php" onsubmit="return fboardlist_submit(this);" method="post">
위로 소스를 이동하세요..
�
아티스트
4년 전
<form~~~
위로 올리니 해결되었습니다
감사합니다
위로 올리니 해결되었습니다
감사합니다
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
<!-- 게시판 목록 시작 -->
<fieldset id="bo_sch">
<legend>게시물 검색</legend>
<form name="fsearch" method="get">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sop" value="and">
<label for="sfl" class="sound_only">검색대상</label>
<select name="sfl" id="sfl">
<?php echo get_board_sfl_select_options($sfl); ?>
</select>
<input name="stx" value="<?php echo stripslashes($stx) ?>" placeholder="검색어를 입력하세요" required id="stx" class="sch_input" size="15" maxlength="20">
<button type="submit" value="검색" class="sch_btn"><i class="fa fa-search" aria-hidden="true"></i> <span class="sound_only">검색</span></button>
</form>
</fieldset>
<div id="bo_list">
<?php if ($is_category) { ?>
<nav id="bo_cate">
<h2><?php echo ($board['bo_mobile_subject'] ? $board['bo_mobile_subject'] : $board['bo_subject']) ?> 카테고리</h2>
<ul id="bo_cate_ul">
<?php echo $category_option ?>
</ul>
</nav>
<?php } ?>
<div class="list_01">
<?php if ($is_checkbox) { ?>
<div class="all_chk chk_box">
<input type="checkbox" id="chkall" onclick="if (this.checked) all_checked(true); else all_checked(false);" class="selec_chk">
<label for="chkall">
<span></span>
<b class="sound_only">현재 페이지 게시물 </b> 전체선택
</label>
알려주신대로 입력했는데 검색창이 위로 오긴 하는데 검색을 하면
"undefined 게시물을 하나이상 선택하세요"
위와같은 메세지가 뜨면서 검색이 안됩니다