uvula6921 of CREMA Publishing Team
4/8/2018 - 4:36 AM

베스트 위젯의 각 리뷰 상단에 텍스트 삽입

웹) 베스트 위젯 상단에 각 리뷰별 개별 텍스트(리뷰 순위 및 순위에 따른 적립금)를 넣어줘야할때 사용

document.write("<ul class='best-review-hats'>");
document.write("<li class='best-review-hat'>MONTHLY<br />BEST REVIEWER<br /><strong>20,000</strong></li>");
document.write("<li class='best-review-hat'>MONTHLY<br />BEST REVIEWER<br /><strong>20,000</strong></li>");
document.write("<li class='best-review-hat'>MONTHLY<br />BEST REVIEWER<br /><strong>20,000</strong></li>");
document.write("</ul>");
<!-- cre.ma / 전체 리뷰 / 스크립트를 수정할 경우 연락주세요 (support@cre.ma) -->
  <style>
      .best-review-hats {
          width: 834px;
          overflow: hidden;
          margin: 0 auto;
          display: block;
      }
      .best-review-hat {
          display: inline-block;
          border: 1px solid #222;
          width: 214px;
          margin: 20px 31px;
          text-align: center;
          padding: 20px 0;
          font-size: 13px;
      }
  </style>