처음부터 비밀글체크 없으니까 참 불편하더라고요...

관리 -> 스킨 -> HTML / CSS 편집 -> *skin.html

에서

        <div class="guestbook">
          <h3>방명록</h3>
          <s_guest_input_form>
            <div class="commentWrite">
              <s_guest_member>
                <s_guest_form>
                  <p>
                    <input type="text" name="" value="" class="name" />
                    <label for="name"> : 이름 </label>
                  </p>
                  <p>

이부분을 수정하시는데요.
간단하게 ctrl + f 눌러서 <s_guest_input_form> 입력하면 바로 저부분으로 이동될꺼라 생각됩니다.

저부분을

        <div class="guestbook">
          <h3>방명록</h3>
          <s_guest_input_form>
            <p>
              <input type="checkbox" class="checkbox" id="secret" name="secret" />
             <label for="secret">비밀글로 등록</label>
             </p>

            <div class="commentWrite">
              <s_guest_member>
                <s_guest_form>
                  <p>
                    <input type="text" name="" value="" class="name" />
                    <label for="name"> : 이름 </label>
                  </p>
                  <p>

 요렇게 빨간박스의 것을 추가해주면 됩니다.
  <p>
       <input type="checkbox" class="checkbox" id="secret" name="secret" />
       <label for="secret">비밀글로 등록</label>
  </p>

이것이죠.

그러면
사용자 삽입 이미지



요렇게 비밀글로 등록 체크박스가 뜹니다.
테스트도 해봐서 잘 작동하는거 확인했습니다. :)

 
사용자 삽입 이미지
 
참 쉽죠?

'Study > Computer' 카테고리의 다른 글

윈도우7, xp 멀티부팅을 위한 bootsect.exe  (1) 2010.12.03
컴활 2급 CBT  (0) 2009.06.22
notepad2  (0) 2009.02.18

+ Recent posts