영카트 [YC5] 주문가격 <div id="sit_tot_price"></div> 수정
페이지 정보
본문
/ skin / shop / basic / item.form.skin 의 내용중에서
<div id="sit_tot_price"></div> 여기에 가격을 계산해서 보여주는 역할을 합니다.
위의 내용을 제어하는 것은
js / shop.override.js 의 price_calculate 함수를 통해서 계산된 값이 표시됩니다
if (typeof price_calculate === "function") {
...
} //end if check function
pc 스타일시트
/ skin / shop / basic / style.css 내용중
<style>
#sit_tot_price {font-size:1.167em;line-height:45px;font-weight:bold;text-align:right}
#sit_tot_price:after {display:block;visibility:hidden;clear:both;content:""}
#sit_tot_price span {float:left}
#sit_tot_price strong {font-size:1.5em;margin-left:15px}
.sit_tot_price {font-weight:bold;padding-bottom:10px;line-height:25px;font-size:1.167em;text-align:right}
.sit_tot_price strong {font-size: 1.5em;margin-left:15px}
.sit_tot_price span {float:left}
</style>
mobile 스타일시트
/ mobile / skin / shop / basic / style.css 내용중
<style>
#sit_tot_price {margin:10px 0;line-height:20px}
#sit_tot_price {text-align:right}
#sit_tot_price span {float:left}
#sit_tot_price strong {font-size:1.25em;color:#000}
</style>
<div id="sit_tot_price"></div> 여기에 가격을 계산해서 보여주는 역할을 합니다.
위의 내용을 제어하는 것은
js / shop.override.js 의 price_calculate 함수를 통해서 계산된 값이 표시됩니다
if (typeof price_calculate === "function") {
...
} //end if check function
pc 스타일시트
/ skin / shop / basic / style.css 내용중
<style>
#sit_tot_price {font-size:1.167em;line-height:45px;font-weight:bold;text-align:right}
#sit_tot_price:after {display:block;visibility:hidden;clear:both;content:""}
#sit_tot_price span {float:left}
#sit_tot_price strong {font-size:1.5em;margin-left:15px}
.sit_tot_price {font-weight:bold;padding-bottom:10px;line-height:25px;font-size:1.167em;text-align:right}
.sit_tot_price strong {font-size: 1.5em;margin-left:15px}
.sit_tot_price span {float:left}
</style>
mobile 스타일시트
/ mobile / skin / shop / basic / style.css 내용중
<style>
#sit_tot_price {margin:10px 0;line-height:20px}
#sit_tot_price {text-align:right}
#sit_tot_price span {float:left}
#sit_tot_price strong {font-size:1.25em;color:#000}
</style>
댓글목록
등록된 댓글이 없습니다.