카페24 쇼핑몰 장바구니 페이지 주문하기 버튼 배경색 변경

300x250

카페24 쇼핑몰 장바구니 페이지 주문하기 버튼 배경색 변경

카페24 쇼핑몰 작업 중 배경색이 지정되어 있다면 참으로 난감한 부분 이 있는데요 바로 장바구니 페이지에 주문하기 버튼에 배경색입니다.
해당 부분은 장바구니 html 편집창에서 {u7} 장바구니 를 보게 되면


{{*
 파일 내용 : 장바구니 출력
 변수 설명 :
  c_3_u1                : 장바구니에 담긴 상품 출력
  c_3_u4                : 옵션 가격 출력
  c_3_u5                : 주문서 작성 버트(회원 로긴시에만)
  ship_fee              : 배송비
  total_price           : 결제 금액
  ship_fee_arr.ship_fee : 배송비 정책
*}}

<!-- unit c_3_u7 시작 -->
<tr>
   <td>
        <table width="660" border="0" cellspacing="0" cellpadding="0" bgcolor="{{$tab_array.c_3.bgcolor}}">
     <tr>
                 <td width="10"><img src="{{$img_array.c_3.9.url}}" border=0 align="absmiddle"></td>
                 <td width="650"><span class="font14_title">장바구니</span> | {{$basket_title}}</td>
            </tr>
        </table>
   </td>
</tr>


<tr>
   <td width="235" height="30" bgcolor="{{$tab_array.c_3.th_bgcolor}}">
       <table width="660" border="0" cellspacing="0" cellpadding="3">
            <tbody>
            <tr>
                 <td class="txt_pro" height="1" colspan="8" bgcolor="{{$tab_array.c_3.th_fgcolor}}" align="center"></td>
            </tr>
            <tr>
                 <td class="txt_pro" colspan="8" bgcolor="{{$tab_array.c_3.td_bgcolor}}" height="1" align="center"></td>
            </tr>
            <tr>
                 <td class="txt_pro" width="60" height="30" align="center">배송구분</td>
                 <td class="txt_pro" width="250" align="center" style="word-break:break-all">상품명</td>
                 <td class="txt_pro" width="60" align="center">판매가</td>
                 <td class="txt_pro" width="70" align="center">수량</td>
                 <td class="txt_pro" width="70" align="center">적립금</td>
                 <td class="txt_pro" width="70" align="center">배송비</td>
                 <td class="txt_pro" width="60" align="center">합계</td>
                 <td class="txt_pro" width="30" align="center">선택</td>
            </tr>
            <tr>
                 <td class="txt_pro" height="1" colspan="8" bgcolor="{{$tab_array.c_3.th_fgcolor}}" align="center"></td>
            </tr>

    {{* Loop 돌면서 장바구니 상품 출력하기 *}}
    {{$c_3_u2}}
    {{* 여기까지 Loop 돌면서 장바구니 상품 출력하기 *}}

    {{*주문하기버튼*}}
    {{$c_3_u14}}

    {{* 상품합계금액 *}}
    {{*$c_3_u8*}}
    {{* 여기까지 *}}

       </tbody>
   </table>
    </td>
 </tr>
 <!-- unit c_3_u7 끝 -->

다음과 같이 되어 있습니다. 요기서 붉은색 표기 된 부분 바로 저기 인데요.

 {{$c_3_u14}} 바로 요녀석인데요 요 모듈만 찾는 다면 배경색 지정은 간단 하게 할 수 있는데요 아무리 찾아도 요녀석은 없다는 거죠..

카페24에 문의를 하면 이부분은 수정이 불가 하다고 하는 답변 만 날라 옵니다.

그렇다면 배경색을 지정한 부분을 요녀석 때문에 주문하기 버튼 부분만 흰색으로 두어야 하나 ...

절대 아닙니다. 안되면 되게 하라 되게 하면 되는거죠..

 {{$c_3_u14}} 이부분을 과감하게 삭제 하고 다음과 같은 소스를 집어 넣어보세요..
<tr align="right" bgcolor="#000000">
    <td class="txt_pro" colspan="8">
        <span style="display:"><a href="javascript:selectbuy_action('/front/php/address.php','','A0000','',this.form);"><img src=http://img0001.echosting.cafe24.com/front/type_b/image/button/but_buy02.gif hspace="5" border="0"></a></span>
    </td>
</tr>
바로 이놈 입니다.
모듈을 사용하지 않고 바로 코딩을 해버리는 거죠 ㅋㅋㅋ 그럼 이렇게

{{*
 파일 내용 : 장바구니 출력
 변수 설명 :
  c_3_u1                : 장바구니에 담긴 상품 출력
  c_3_u4                : 옵션 가격 출력
  c_3_u5                : 주문서 작성 버트(회원 로긴시에만)
  ship_fee              : 배송비
  total_price           : 결제 금액
  ship_fee_arr.ship_fee : 배송비 정책
*}}

<!-- unit c_3_u7 시작 -->
<tr>
   <td>
        <table width="660" border="0" cellspacing="0" cellpadding="0" bgcolor="{{$tab_array.c_3.bgcolor}}">
     <tr>
                 <td width="10"><img src="{{$img_array.c_3.9.url}}" border=0 align="absmiddle"></td>
                 <td width="650"><span class="font14_title">장바구니</span> | {{$basket_title}}</td>
            </tr>
        </table>
   </td>
</tr>


<tr>
   <td width="235" height="30" bgcolor="{{$tab_array.c_3.th_bgcolor}}">
       <table width="660" border="0" cellspacing="0" cellpadding="3">
            <tbody>
            <tr>
                 <td class="txt_pro" height="1" colspan="8" bgcolor="{{$tab_array.c_3.th_fgcolor}}" align="center"></td>
            </tr>
            <tr>
                 <td class="txt_pro" colspan="8" bgcolor="{{$tab_array.c_3.td_bgcolor}}" height="1" align="center"></td>
            </tr>
            <tr>
                 <td class="txt_pro" width="60" height="30" align="center">배송구분</td>
                 <td class="txt_pro" width="250" align="center" style="word-break:break-all">상품명</td>
                 <td class="txt_pro" width="60" align="center">판매가</td>
                 <td class="txt_pro" width="70" align="center">수량</td>
                 <td class="txt_pro" width="70" align="center">적립금</td>
                 <td class="txt_pro" width="70" align="center">배송비</td>
                 <td class="txt_pro" width="60" align="center">합계</td>
                 <td class="txt_pro" width="30" align="center">선택</td>
            </tr>
            <tr>
                 <td class="txt_pro" height="1" colspan="8" bgcolor="{{$tab_array.c_3.th_fgcolor}}" align="center"></td>
            </tr>

    {{* Loop 돌면서 장바구니 상품 출력하기 *}}
    {{$c_3_u2}}
    {{* 여기까지 Loop 돌면서 장바구니 상품 출력하기 *}}

    <tr align="right" bgcolor="#000000">
    <td class="txt_pro" colspan="8">
        <span style="display:"><a href="javascript:selectbuy_action('/front/php/address.php','','A0000','',this.form);"><img src=http://img0001.echosting.cafe24.com/front/type_b/image/button/but_buy02.gif hspace="5" border="0"></a></span>
    </td>
</tr>

    {{* 상품합계금액 *}}
    {{*$c_3_u8*}}
    {{* 여기까지 *}}

       </tbody>
   </table>
    </td>
 </tr>
 <!-- unit c_3_u7 끝 -->

이렇게 되는 것입니다. 그럼 주문하기 버튼에 배경색을 원하는 색상으로 지정 할 수있습니다.^^



카페24쇼핑몰,메이크샵,고도몰 자동글쓰기 프로그램



카페24쇼핑몰 전용 자동 글쓰기 프로그램




300x250
이글에는 개 의 댓글이 있습니다. 댓글 확인 ▼

Comments