선택옵션 증가 감소 숫자옆에 글자넣으려면
본문
선택옵션쪽 숫자옆에 '명'이라는 글자를 넣고싶은데,
어떻게 해야되는지 ㅠㅠ 도통 모르겠어요 ㅠ
테마 사용하고있는데, 테마 item.form.skin.php 를 건드려봐도, 아무런 반응이 없고,
다른파일은 어디서 뭘 건드려야될지도 감이 안오네요 ㅠㅠ
고수님들 부탁드립니다.ㅠ~!ㅠㅠㅠㅠ
답변 1
변화가 없다면 다른 파일을 수정하시는거구요..
해당 item.form.skin.php 291줄에 아래 부분을 찾아서 추가해보세요.
데모> http://eyekiss.kr/shop/item.php?it_id=1552296436
<div class="opt_count">
<label for="ct_qty_<?php echo $i; ?>" class="sound_only">수량</label>
<button type="button" class="sit_qty_minus"><i class="fa fa-minus" aria-hidden="true"></i><span class="sound_only">감소</span></button>
<input type="text" name="ct_qty[<?php echo $it_id; ?>][]" value="<?php echo $it['it_buy_min_qty']; ?>" id="ct_qty_<?php echo $i; ?>" class="num_input" size="5">
<span style="position:absolute;top:6px;left:57px;">명</span>
<button type="button" class="sit_qty_plus"><i class="fa fa-plus" aria-hidden="true"></i><span class="sound_only">증가</span></button>
<span class="sit_opt_prc">+0원</span>
</div>