# Mygreek\_Mobile 스킨 가이드

> 공통

<details>

<summary><strong>포인트 컬러 일괄 변경하기</strong></summary>

1. 컬러코드값 확인\
   Mygreek 스킨에 적용되어 있는 기본 컬러 코드 **#0CC472**을 확인합니다.&#x20;
2. **디자인 스킨 리스트 접속** | 모바일샵 > 모바일샵 디자인 관리 > 디자인 스킨 리스트&#x20;
3. &#x20;좌측 하단 폴더트리 내 스타일시트/CSS더블 클릭하여 아래와 같이 표시된 **스타일 시트**를 오픈합니다.\
   \- common.css를 더블 클릭 하여 common/gd\_common.css 파일을 엽니다.
4. 화면 최상단에서 --primary-default의 값을 원하는 포인트 컬러 코드로 변경합니다.<br>

```
:root {
	--primary-default: #0cc472; /* 포인트 컬러 */
	--primary-hover: #02b666; /* 포인트 컬러 hover */
	--secondary-default: #ff5810; /* 서브 컬러 */
	--neutrals-gray: #edebe5;
	--neutrals-dark: #000;
	--font-size: 12px; /* 기본 폰트 사이즈 */
	--font-family: 'Pretendard variable'; /* 기본 폰트 명 */
	--font-regular: 400;
	--font-medium: 500;
	--font-bold: 700;
}
```

5. 사이트 전체 폰트 사이즈 변경 시 --font-size의 값 수정, 사이트 전체 서체 변경 시 --font-family 값을 변경합니다.

</details>

<details>

<summary>푸터 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2F7xMxgLqFTqqt8Zg7nqfk%2Fimage.png?alt=media\&token=dc925462-2a14-42ee-9993-3840ac34d9f0)

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FNKmKYqGaKFYD3YWVH8PW%2Fimage.png?alt=media\&token=286cdf65-eb4f-42ea-ad4e-116c1822b22b)

1. CS CENTER, BANK INFO 변경하기\
   CS CENTER, BANK INFO 타이틀의 color(색상), font-size(크기), font-weight(굵기), text-align(정렬)값을 변경할 수 있습니다.

```css
.main .main_info_box .main_info dl dt {
	font-size: 13px; /* 글자 크기 */
	margin: 0 5px;
	font-weight: bold; /* 글자 굵기 */
	border-bottom: 1px solid #999;
	padding-bottom: 5px;
        color: #fff; /* 글자색 */
        text-align: center; /* 정렬 */
}
```

2. CS CENTER 전화번호, 예금주의 color(색상), font-size(크기), font-weight(굵기) 값을 변경할 수 있습니다.

```css
.main .main_info dl dd p.phone a {
	font-size: 14px; /* 글자 크기 */
	font-weight: bold; /* 글자 굵기 */
	color: #5f1212; /* 글자 색 */
}

```

```css
.main .main_info dl dd .account_holder {
	padding: 5px 0;
        font-size: 14px; /*글자 크기*/
}
```

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2F08KCncmggmE4Feuz21Z5%2Fimage.png?alt=media\&token=d844e29d-c57e-4594-a27f-f09e7cfe2ff9)

3\. 푸터 메뉴버튼의 **font-size(크기), color(색상), text-align(정렬), letter-spacing(자간), font-weight(굵기)**  값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
#footer footer .ft_info2_box .ft_menu li a {
	display: block;
	padding: 18px 0px 10px 0px;
	font-size: 11px;
	color: #d1d1d1;
	text-align: left;
	letter-spacing: -1px;
}
```

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FhepNU0lmM7e4wOpYMz6Z%2Fimage.png?alt=media\&token=998fbbd7-0c94-43e0-9de3-79a3fb6366f1)

4\. 푸터 정보 부분의 **text-align(정렬), font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
#footer footer .ft_info2_box .ft_address {
	padding: 0px;
	text-align: left;
	font-size: 12px;
	color: #e0e0e0;
	word-break: keep-all;
}
```

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FcUADFFYwiSq3gWNNNlnb%2Fimage.png?alt=media\&token=9e3bd7ff-9f55-40a4-a697-09858d087450)

5\.  푸터 카피라잇 영역의 **color(색상), font-size(크기), text-align(정렬)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
#footer footer .ft_copy {
    padding:15px 0 30px 0;
    color:#e0e0e0;
    font-size:11px;
    text-align:left;
    font-style:normal;
}
```

</details>

<details>

<summary>고객센터, PC화면 버튼 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FcjxdZudLXB1mU57zABUs%2Fimage.png?alt=media\&token=22fb1b6d-274e-451c-bac8-4a23334b0c12)

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FZwqR81TR8G0j2oMdAz2W%2Fimage.png?alt=media\&token=a5836575-f744-4a02-bfef-3c9a9012b5e7)

1\. 고객센터, PC화면 버튼의 **background(배경), color(색상), font-size(크기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
#footer footer .ft_button_box ul li a {
	display: block;
	padding: 10px 0;
	background: #484848;
	color: #aeaeae;
	font-size: 13px;
	border-radius: 20px;
}
```

</details>

<details>

<summary>상단 헤더 영역 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FT4eiDsePMktNsmlaFz9f%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.42.27.png?alt=media\&token=be773e01-a68a-42fe-8c2d-a8e11d311d66)

1\. GNB영역의 **border-bottom(선), height(높이)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
#header_wrap header .header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    border-bottom:1px solid #000;
    height: 62px;
}
```

2\. 장바구니 담긴상품 수량의 배경 **background(배경), color(**&#xAE00;자색) 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
#header_wrap header .header_box .cart_count {
	position: absolute;
	top: 8px;
	right: 0;
	display: block;
	padding: 0px 4px;
	line-height: 15px;
	border-radius: 100%;
	color: #fff;
	background: var(--primary-default);
	vertical-align: middle;
	font-size: 10px;
}
```

</details>

<details>

<summary>슬라이드 메뉴 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FbWaSZ227EescarnfawTR%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.43.46.png?alt=media\&token=d6d9bdb6-6fa6-4cc8-9725-1398fd99fe09)

1\. 상단배너의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
.nav_banner .nav_login ul li a {
    display: inline-block;
    font-size: 15px;
    color: #222222;
}
```

2\. 아이콘 메뉴 영역의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
.nav_link ul li a {
    display: block;
    padding: 36px 0 0 0;
    font-size: 15px;
    color: #888;
}
```

3\. 탭버튼 활성화 시 **background(배경), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
.nav_tabmenu_box .nav_tabmenu li.on span {
    background: #ab3e55;
    color: #fff;
    font-weight: bold;
}
```

4\.  탭버튼 비활성화 시 **background(배경), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
.nav_tabmenu_box .nav_tabmenu li span {
    display: block;
    padding: 10px 0 10px 0;
    background: #e8e8e8;
    color: #acacac;
}
```

\
5\. 메뉴 텍스트 스타일 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/proc/proc.css**

```css
.category_side > li a {
    position: relative;
    display: block;
    padding: 12px 0 12px 0;
    font-size: 16px;
    color: #262626;
}
```

메뉴 폰트 **font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**proc > proc.css | css/proc/proc.css**

```css
.category_side > li > a {
    font-weight: bold;
}
```

6\. 메뉴 폰트 선택 시 **color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/proc/proc.css**

```css
.category_side > li > a.on {
    color: var(--primary-default);
}
```

</details>

> 메인

<details>

<summary>상품 리스트 스타일 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FD9RMjnK6STINgNsdDcr6%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.45.21.png?alt=media\&token=0d905e5c-baa3-4c77-a832-fb6ba1abb49e)

1\. 상품리스트 이미지의 **border(라인)** 값을 변경할 수 있습니다.&#x20;

**css/goods/list/list\_01.css**

```css
.goods_prd_item2 .goods_prd_img .img_box .img img {
    width: 100%;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}
```

2\. 상품리스트 상품명 폰트의 **color(색상), font-size(크기)** 값을 변경할 수 있습니다.&#x20;

**css/goods/list/list\_01.css**

```css
.goods_prd_item2 .goods_prd_content .goods_info_list li {
    padding: 1px 0 1px 0;
    word-break: break-all;
    color: #3e3d3c;
    font-size: 14px;
}
```

3\. 상품리스트 가격 폰트의 **color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/list/list\_01.css**

```css
.goods_prd_item2 .goods_prd_content .goods_info_list li.price .c_price {
    color: #000;
}
```

</details>

<details>

<summary>진열타입 타이틀 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FVxSGpsfG6M4NxFo1qLQ6%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.47.02.png?alt=media\&token=9de24092-1541-409b-ac31-a1706a404cfc)

1\. 타이틀의 **font-size(크기), color(색상), border-bottom(선), font-weight(굵기**) 값을 변경할 수 있습니다.&#x20;

**css/proc/proc.css**

```css
._goods_display_main h3 {
    position:relative;
    display:block;
    padding:40px 0px 0px 16px;
    font-size:24px;
    color:#181818;
    /* border-bottom:1px solid #f3f2f2; */
    text-align:left;
    font-weight:400px;
}
```

2\. 더보기 버튼의 **background(배경), font-size(크기),  border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.main_more_btn2 {
    display: block;
    width: 70px;
    padding: 2px 8px;
    text-align: center;
    background: #000;
    font-size: 12px;
    font-weight: 600;
    /* border: 1px solid #9f9f9f; */
    color: #fff;
    box-sizing: border-box;
    position: absolute;
    top: 50px;
    right: 0px;
}
```

</details>

> 상품상세

<details>

<summary>상품후기 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FWV4aZCDOSHqboJO0fVkz%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.48.28.png?alt=media\&token=7e067216-c55f-4af9-a86b-ef58f6957fbc)

1\. 상품 후기 게시판 타이틀의 **background(배경), border-bottom(선)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_plus\_review\.css**

```css
.plus_review_container .plus_review_top_box {
    display: table;
    width: 100%;
    padding: 2px 0;
    background: #f2f3f3;
    border-bottom: 1px solid #e2e2e2;
}
```

2\.  평가, 리뷰수 타이틀 폰트의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_plus\_review\.css**

```css
.plus_review_container .plus_review_top_box dl dt {
    display: table-cell;
    font-size: 13px;
    color: #606060;
    vertical-align: middle;
}
```

3\.  평가, 리뷰 갯수 폰트의 **font-weight(굵기), font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_plus\_review\.css**

```css
.plus_review_container .plus_review_top_box dl dd {
    display: table-cell;
    padding: 0 8px 0 8px;
    font-weight: bold;
    font-size: 24px;
    color: #fa2828;
    vertical-align: middle;
}
```

4\.  리뷰등록 버튼의 **background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_plus\_review\.css**

```css
.plus_reivew_write_btn {
    display: inline-block;
    width: 80px;
    margin: 0 10px 0 0;
    padding: 4px 0 4px 0;
    text-align: center;
    background: #3e3d3c;
    border: 1px solid #3e3d3c;
    color: #ffffff;
    font-weight: bold;
    box-sizing: border-box;
}
```

5\.  후기작성 버튼의 **text-align(정렬), color(색상), font-size(크기), font-weight(굵기), background(배경), border(선)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.detail_write_btn {
    display:inline-block;
    width:100%;
    padding:10px 0 10px 0;
    text-align:center;
    color:#0CC472;
    font-size:15px;
    font-weight:bold;
    background:#ffffff;
    border:1px solid #0CC472;
    box-sizing:border-box;
}
```

6\.  상품평 더보기 버튼의 **text-align(정렬), color(색상), font-size(크기), background(배경)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.detail_more_btn {
    display:inline-block;
    width:100%;
    padding:10px 0 10px 0;
    text-align:center;
    color:#494949;
    font-size:15px;
    background:#ffffff;
    border:1px solid #9f9f9f;
    font-weight:bold;
}
```

</details>

<details>

<summary>옵션 레이어-셀렉트박스 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FiWNuDxJzc5HbIKbHSA2b%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.49.09.png?alt=media\&token=7f64f4a1-dbfe-4852-9710-64ca10a65345)

1\.  옵션 레이어의 기본 옵션 폰트의 **font-size(크기), color(색상), text-align(정렬), background(배경)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_common.css**

```css
.layer_option .ly_buy_info .ly_opt .bn_opt {
    display:block;
    position:relative;
    width:100%;
    height:33px;
    border:1px solid #c7c7c7;
    font-size:13px;
    color:#777;
    text-align:left;
    text-indent:11px;
    z-index:100;
    background:#fff url('../img/icon/icon_bg_select.png') no-repeat 100% 0;
    background-size:400px 31px;
}
```

2\. 옵션 레이어 활성화 시 **border(선)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_common.css**

```css
.layer_option .ly_buy_info .ly_opt .bn_opt.selected {
    border: 1px solid #999;
}
```

3\. 옵션 레이어 옵션 폰트의 **border-bottom(선), font-weight(굵기), font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_common.css**

```css
.layer_option .ly_buy_info .ly_opt li .optbx .optlst li {
    position: relative;
    min-height: 42px;
    text-indent: 10px;
    border-bottom: 1px solid #c7c7c7;
    font-weight: bold;
    font-size: 13px;
    color: #555;
    line-height: 42px;
    vertical-align: middle;
}
```

</details>

<details>

<summary> <strong>옵션 레이어-항목 변경하기(폰트/버튼)</strong></summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2Fn5bBVNmjbZE7PrpqlQx6%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.49.09.png?alt=media\&token=c0e808d4-58c4-45df-a0c5-498b6fc5bfaf)

1\. 옵션 레이어 쿠폰적용 버튼의 **background(배경), color(색상), border-radius(둥근선), border(선)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.coupon_apply_btn {
    display: inline-block;
    height: 21px;
    margin: 0 0 0 5px;
    padding: 0 6px;
    background: #000;
    color: #ffffff;
    border-radius: 4px;
    border: 1px solid #000;
}
```

2\. 상품 가격 금액 폰트의 **font-size(크기), font-weight(굵기), text-align(정렬)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_common.css**

```css
.view_order_goods dl dd .price_info .right .price {
    padding: 5px 0 0 0;
    font-size: 15px;
    font-weight: bold;
    text-align: right;
}
```

3\. 상품 가격 제목 폰트의 **font-size(크기), text-align(정렬)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_common.css**

```css
.total_price_box ul li dl dt {
    display: table-cell;
    width: 90px;
    font-size: 13px;
    text-align: left;
    vertical-align: middle;
}
```

4\. 상품 가격 금액 폰트의 **font-size(크기), font-weight(굵기), text-align(정렬)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_common.css**

```css
.total_price_box ul li dl dd {
    display: table-cell;
    font-size: 15px;
    font-weight: bold;
    text-align: right;
    vertical-align: middle;
}
```

</details>

<details>

<summary>상품문의-<strong>리스트</strong> 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FRAJhsuMSYVS6Jwexvriz%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.51.03.png?alt=media\&token=616e7d6d-02a8-43c5-8d32-85e983afa54e)

1\. 상품문의 게시판 문의 상태표시 아이콘의 **font-size(크기), line-height(행간), background(배경), color(색상),  border-radius(둥근선), border(선)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_board_qa_list li .item_list_summary .board_left .author_box .ico_ans1 {
    display: inline-block;
    padding: 5px 5px 3px 5px;
    font-size: 10px;
    line-height: 12px;
    background: #ffffff;
    color:#0CC472;
    border-radius: 15px;
    border: 1px solid #0CC472;
}
```

2\.  문의 제목 폰트의 **font-size(크기), color(색상), line-height(행간)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_board_qa_list li .item_list_summary .board_left .title a {
    font-size: 14px;
    color: #333333;
    line-height: 22px;
    word-break: break-all;
}
```

</details>

<details>

<summary><strong>상품문의-비밀번호 인증 레이어 변경하기</strong></summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2F1Fek6fAhLA4IBoZJ2W5I%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.51.36.png?alt=media\&token=c0297f4e-d38c-4e78-b03a-a874730dddec)

1\. 비밀번호 인증 레이어의 **height(높이), background(배경), border(선)** 값을 변경할 수 있습니다.&#x20;

**css/board/board.css**

```css
.cite_layer .wrap {
    position: relative;
    height: 190px;
    background: #ffffff;
    border: 1px solid #555555;
}
```

\
2\. 비밀번호 인증 타이틀의 **height(높이), background(배경), border(선)** 값을 변경할 수 있습니다.&#x20;

**css/board/board.css**

```css
.cite_layer .wrap h4 {
    height: 27px;
    padding: 13px 0 0 17px;
    background: #f4f4f4;
    color: #222222;
}
```

3\. 비밀번호 인증 레이어 확인 버튼의 **color(색상), border-radius(둥근선), background(배경)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.d_pw_confirm_btn {
    display:inline-block;
    padding:5px 15px 5px 15px;
    color:#ffffff;
    border:1px solid #0CC472;
    border-radius:3px;
    background:#0CC472;
}
```

</details>

<details>

<summary><strong>상품문의-리스트 내용 변경하기(폰트/버튼)</strong></summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FI4kdSjDCXSLjOAlXQoT4%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.52.37.png?alt=media\&token=9a79c3b6-7d19-4353-90ea-52cc958f0324)

1\. 상품문의 내용 폰트의  **color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_board_view .contents_holder {
    table-layout: fixed;
    color: #777777;
    word-break: break-all;
    word-wrap: break-word;
}
```

2\. 수정, 삭제 버튼의 **color(색상), font-size(크기), border(선), background(배경), border-radius(둥근선)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.d_comment_modify_btn {
    display: inline-block;
    padding: 2px 10px;
    color: #333333;
    font-size: 11px;
    border: 1px solid #c7c7c7;
    background: #ffffff;
    border-radius: 2px;
}
```

</details>

<details>

<summary> 상세 타이틀 및 info 레이어 폰트 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FxumeOP7n3R3bd0uQm2j6%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.53.28.png?alt=media\&token=820e758f-3a51-407a-92c2-645392eabb53)

1\. 상품 상세 타이틀의 **font-size(크기), line-height(행간), text-align(정렬)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_layout.css**

```css
.sub_top h2 {
    overflow: hidden;
    display: block;
    width: 100%;
    padding: 12px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 15px;
    line-height: 15px;
    text-align: center;
}
```

2\. info 레이어 영역의 **font-size(크기), color(색상), line-height(행간), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_tab_info .ly_info li a {
    position: relative;
    display: block;
    width: 100%;
    height: 36px;
    font-size: 13px;
    color: #222222;
    line-height: 36px;
    font-weight: bold;
}
```

</details>

<details>

<summary>상품 상세 탭 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2F7QfA0PKC5oJH2fHCyKsY%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.54.30.png?alt=media\&token=f5ec3c32-64a7-44e2-9666-327834d2b493)

1\. 상품 상세페이지 탭 폰트의 **color(색상), font-size(크기), line-height(행간), font-weight(굵기), text-align(정렬)**  값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li a {
    display: inline-block;
    width: 100%;
    color: #000;
    font-size: 13px;
    line-height: 13px;
    font-weight: bold;
    text-align: center;
}
```

2\.  게시글 등록 수량 폰트의 **font-size(크기), color(색상), line-height(행간)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li a span {
    display: block;
    padding: 2px 0 0 0;
    font-size: 11px;
    color: #0CC472;
    line-height: 11px;
}
```

3\.  현재위치 탭표시 라인의 **border-bottom(선)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_btm_tab_menu_box .detail_btm_tab_menu ul li.selected {
    padding: 1px 0 0 0;
    height: 49px;
    border-bottom: 2px solid #000;
}
```

</details>

<details>

<summary>상품 상세 버튼 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FMCT47ASOiMXzJ7j6TTXP%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.54.30.png?alt=media\&token=34814071-681d-48b2-abe6-b3ae0ee1724d)

1\.  장바구니 버튼의 **font-size(크기), text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.detail_cart_btn {
    display: block;
    width: 100%;
    padding: 10px 0 10px 0;
    font-size: 16px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #9f9f9f;
    color: #494949;
    font-weight: bold;
    box-sizing: border-box;
}
```

2\.  바로구매 버튼의 **font-size(크기), text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.detail_order_btn {
    display: block;
    width: 100%;
    padding: 10px 0 10px 0;
    font-size: 16px;
    text-align: center;
    background: #0CC472;
    border: 1px solid #0CC472;
    color: #ffffff;
    font-weight: bold;
    box-sizing: border-box;
```

</details>

<details>

<summary> 상품 상세 리스트 영역 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2F0tmtilPE8c5al7UqUqhb%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.56.23.png?alt=media\&token=e81b0ffe-cb9d-4abd-88c1-3fa2372f4b2b)

1\. 상품명 폰트의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_info h3 {
    font-size: 18px;
    color: #333333;
    word-break: break-all;
}
```

2\.  상품 할인가격 폰트의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_info .detail_info_top .price_box .price {
    font-size: 20px;
    color: #333333;
}
```

3\.  상품 할인 전 가격 폰트의 **color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_info .detail_info_top .price_box del {
    color: #999999;
}
```

4\.  상품 상세페이지 리스트 제목**font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_info .detail_sub_info dl dt {
    display: table-cell;
    width: 25%;
    font-size: 12px;
    color: #888888;
}
```

5\.  상품 상세페이지 리스트 내용 폰트의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .detail_info .detail_sub_info dl dd {
    display: table-cell;
    width: 75%;
    font-size: 12px;
    color: #333333;
}
```

6\.  공유하기, 찜하기 버튼의 **font-size(크기), text-align(정렬), background(배경), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/goods/goods.css**

```css
.goods_view .share_btn_box ul li button {
    display:block;
    margin:0 auto;
    padding:16px 0;
    font-size:13px;
    text-align:center;
    background:none;
    border:none;
    color:#333333;
    font-weight:bold;
}
```

</details>

> #### 주문결제

<details>

<summary>장바구니 버튼 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FRJ8W54C896C0TvnH7rcA%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%203.59.21.png?alt=media\&token=ccfdbddb-1f0b-459c-91af-525fd2c334eb)

1\. 쿠폰적용 버튼의 **text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.cart_coupon_apply {
   display:inline-block;
   padding:4px 8px;
   text-align:center;
   background:#000;
   border:1px solid #000;
   color:#ffffff;
   font-weight:normal;
   box-sizing:border-box;
   border-radius:4px;
}
```

2\. 옵션변경 버튼의 **text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.cart_option_modify {
   display:inline-block;
   padding:4px 8px;
   text-align:center;
   background:#000;
   border:1px solid #000;
   color:#ffffff;
   font-weight:normal;
   box-sizing:border-box;
   border-radius:4px;
}
```

3\. 선택상품 삭제, 주문 버튼의 **text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.cart_select_del_btn {
    display:inline-block;
    width:100%;
    padding:10px 0 10px 0;
    text-align:center;
    background:#ffffff;
    border:1px solid #9f9f9f;
    color:#494949;
    font-weight:bold;
    box-sizing:border-box;
    font-size:14px;
}
```

4\. 전체주문 버튼의 **text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/gd\_button.css**

```css
.cart_all_order_btn {
    display:inline-block;
    width:100%;
    padding:10px 0 10px 0;
    text-align:center;
    background:#0CC472;
    border:1px solid #0CC472;
    color:#ffffff;
    font-weight:bold;
    box-sizing:border-box;
    font-size:14px;
}
```

</details>

<details>

<summary>장바구니 폰트 변경하기</summary>

![](https://2478997954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQ4835cBGqYqyT5gSFgxN%2Fuploads%2FCZCsDts22okBDfhfDQfK%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-10-16%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%204.00.21.png?alt=media\&token=691a3804-8a21-4cd0-a76b-c56af0fe33f7)

1\.  장바구니 상품명 폰트의 **font-weight(굵기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/order/order.css**

```css
.cart .cart_content_box .my_goods li .mid_box .right_box .info .itembody p.name {
    padding: 0 0 3px 0;
    font-weight: bold;
    color: #333;
}
```

2\.  장바구니 상품 옵션 폰트의 **font-size(크기), line-height(행간), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/order/order.css**

```css
.cart .cart_content_box .my_goods li .mid_box .right_box .info .itembody p {
    font-size: 12px;
    line-height: 16px;
    color: #9d9d9d;
}
```

3\.  장바구니 상품 가격 폰트의 **font-size(크기), color(색상), font-weight(굵기)** 값을 변경할 수 있습니다.&#x20;

**css/order/order.css**

```css
.cart .cart_content_box .my_goods li .mid_box .right_box .info .itembody .prc {
    display:block;
    padding:10px 0 0 0;
    font-size:15px;
    color:#000;
    font-weight:bold;
}
```

4\.  장바구니 항목 타이틀 폰트의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/order/order.css**

```css
.cart .my_buy dl dt {
    display: table-cell;
    width: 50%;
    font-size: 13px;
    color: #5e5e5e;
}
```

5\.  장바구니 총 상품금액 폰트의 **font-size(크기), color(색상)** 값을 변경할 수 있습니다.&#x20;

**css/order/order.css**

```css
.cart .my_buy dl dd {
    display: table-cell;
    width: 50%;
    text-align: right;
    font-size: 15px;
    color: #5e5e5e;
}
```

6\.  장바구니 총 합계금액 폰트의 **color(색상),  font-size(크기)** 값을 변경할 수 있습니다.&#x20;

**css/order/order.css**

```css
.cart .my_buy dl.total dd {
    color: #000;
    font-size: 17px;
}
```

</details>
