📱Weyouwe_Mobile 스킨 가이드
공통
포인트 컬러 일괄 변경하기
컬러코드값 확인 Weyouwe 스킨에 적용되어 있는 기본 컬러 코드 #700909을 확인합니다.
디자인 스킨 리스트 접속 | 모바일샵 > 모바일샵 디자인 관리 > 디자인 스킨 리스트
좌측 하단 폴더트리 내 스타일시트/CSS더블 클릭하여 아래와 같이 표시된 스타일 시트를 오픈합니다. - common.css를 더블 클릭 하여 common/gd_common.css 파일을 엽니다.
화면 최상단에서 --primary-default의 값을 원하는 포인트 컬러 코드로 변경합니다.
:root {
--primary-default: #700909; /* 포인트 컬러 */
--primary-hover: #490A0A; /* 포인트 컬러 hover */
--secondary-default: #0D0D0D; /* 서브 컬러 */
--neutrals-gray: #747474;
--neutrals-dark: #343434;
--font-size: 12px; /* 기본 폰트 사이즈 */
--font-family: 'Pretendard variable'; /* 기본 폰트 명 */
--font-family-point: 'Bebas Neue'; /* 포인트 폰트 명 */
--font-regular: 400;
--font-medium: 500;
--font-bold: 700;
}사이트 전체 폰트 사이즈 변경 시 --font-size의 값 수정, 사이트 전체 서체 변경 시 --font-family 값을 변경합니다.
메인 상품리스트 타이틀 변경시 --font-family-point 값을 변경 합니다.
푸터 변경하기

CS CENTER, BANK INFO 변경하기 CS CENTER, BANK INFO 타이틀의 color(색상), font-size(크기), font-weight(굵기), text-align(정렬)값을 변경할 수 있습니다.
.main_info_box .main_info dl dt {
font-size: 13px; /* 폰트 사이즈 */
font-weight: bold; /* 폰트 굵기 */
border-bottom: 1px solid #999; /* 하단 보더 */
padding-bottom: 5px; /* 타이틀 하단 여백 */
}CS CENTER 전화번호, 예금주의 color(색상), font-size(크기), font-weight(굵기) 값을 변경할 수 있습니다.
.main_info dl dd p.phone a {
font-size: 14px; /* 글자 크기 */
font-weight: bold; /* 글자 굵기 */
color: #fff; /* 글자 색 */
}
.main_info dl dd .account_holder {
padding: 5px 0;
font-size: 14px; /*글자 크기*/
}
3. 푸터 메뉴버튼의 font-size(크기), color(색상), text-align(정렬), letter-spacing(자간), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_layout.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;
}
4. 푸터 정보 부분의 text-align(정렬), font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/gd_layout.css
#footer footer .ft_info2_box .ft_address {
padding: 0px;
text-align: left;
font-size: 12px;
color: #e0e0e0;
word-break: keep-all;
}
5. 푸터 카피라잇 영역의 color(색상), font-size(크기), text-align(정렬) 값을 변경할 수 있습니다.
css/gd_layout.css
#footer footer .ft_copy {
padding:15px 0 30px 0;
color:#e0e0e0;
font-size:11px;
text-align:left;
font-style:normal;
}고객센터, PC화면 버튼 변경하기

1. 고객센터, PC화면 버튼의 background(배경), color(색상), font-size(크기) 값을 변경할 수 있습니다.
css/gd_layout.css
#footer footer .ft_button_box ul li a {
display: block;
padding: 10px 0;
background: #484848;
color: #aeaeae;
font-size: 13px;
border-radius: 20px;
}상단 헤더 영역 변경하기

GNB영역의 background(배경색), border-bottom(선), height(높이) 값을 변경할 수 있습니다.
css/gd_layout.css
#header_wrap header {
width: 100%;
min-width: 320px;
background: #000;
z-index: 300;
}2. 장바구니 담긴상품 수량의 배경 background(배경), color(글자색) 값을 변경할 수 있습니다.
css/gd_layout.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;
}슬라이드 메뉴 변경하기

1. 상단배너의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/gd_layout.css
.nav_banner .nav_login ul li a {
display: inline-block;
font-size: 15px;
color: #222222;
}2. 아이콘 메뉴 영역의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/gd_layout.css
.nav_link ul li a {
display: block;
padding: 36px 0 0 0;
font-size: 15px;
color: #888;
}3. 탭버튼 활성화 시 background(배경), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_layout.css
.nav_tabmenu_box .nav_tabmenu li.on span {
background: #ab3e55;
color: #fff;
font-weight: bold;
}4. 탭버튼 비활성화 시 background(배경), color(색상) 값을 변경할 수 있습니다.
css/gd_layout.css
.nav_tabmenu_box .nav_tabmenu li span {
display: block;
padding: 10px 0 10px 0;
background: #e8e8e8;
color: #acacac;
}5. 메뉴 텍스트 스타일 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/proc/proc.css
.category_side > li a {
position: relative;
display: block;
padding: 12px 0 12px 0;
font-size: 16px;
color: #262626;
}메뉴 폰트 font-weight(굵기) 값을 변경할 수 있습니다.
proc > proc.css | css/proc/proc.css
.category_side > li > a {
font-weight: bold;
}6. 메뉴 폰트 선택 시 color(색상) 값을 변경할 수 있습니다.
css/proc/proc.css
.category_side > li > a.on {
color: var(--primary-default);
}메인
상품 리스트 스타일 변경하기

1. 상품리스트 이미지의 border(라인) 값을 변경할 수 있습니다.
css/goods/list/list_01.css
2. 상품리스트 상품명 폰트의 color(색상), font-size(크기) 값을 변경할 수 있습니다.
css/goods/list/list_01.css
3. 상품리스트 가격 폰트의 color(색상) 값을 변경할 수 있습니다.
css/goods/list/list_01.css
진열타입 타이틀 변경하기

1. 타이틀의 font-size(크기), color(색상), border-bottom(선), font-weight(굵기) 값을 변경할 수 있습니다.
css/main/main.css
2. 더보기 버튼의 background(배경), font-size(크기), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/main/main.css
상품상세
상품후기 변경하기

1. 상품 후기 게시판 타이틀의 background(배경), border-bottom(선) 값을 변경할 수 있습니다.
css/gd_plus_review.css
2. 평가, 리뷰수 타이틀 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/gd_plus_review.css
3. 평가, 리뷰 갯수 폰트의 font-weight(굵기), font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/gd_plus_review.css
4. 리뷰등록 버튼의 background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_plus_review.css
5. 후기작성 버튼의 text-align(정렬), color(색상), font-size(크기), font-weight(굵기), background(배경), border(선) 값을 변경할 수 있습니다.
css/gd_button.css
6. 상품평 더보기 버튼의 text-align(정렬), color(색상), font-size(크기), background(배경) 값을 변경할 수 있습니다.
css/gd_button.css
옵션 레이어-셀렉트박스 변경하기

1. 옵션 레이어의 기본 옵션 폰트의 font-size(크기), color(색상), text-align(정렬), background(배경) 값을 변경할 수 있습니다.
css/gd_common.css
2. 옵션 레이어 활성화 시 border(선) 값을 변경할 수 있습니다.
css/gd_common.css
3. 옵션 레이어 옵션 폰트의 border-bottom(선), font-weight(굵기), font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/gd_common.css
옵션 레이어-항목 변경하기(폰트/버튼)

1. 옵션 레이어 쿠폰적용 버튼의 background(배경), color(색상), border-radius(둥근선), border(선) 값을 변경할 수 있습니다.
css/gd_button.css
2. 상품 가격 금액 폰트의 font-size(크기), font-weight(굵기), text-align(정렬) 값을 변경할 수 있습니다.
css/gd_common.css
3. 상품 가격 제목 폰트의 font-size(크기), text-align(정렬) 값을 변경할 수 있습니다.
css/gd_common.css
4. 상품 가격 금액 폰트의 font-size(크기), font-weight(굵기), text-align(정렬) 값을 변경할 수 있습니다.
css/gd_common.css
상품문의-리스트 변경하기

1. 상품문의 게시판 문의 상태표시 아이콘의 font-size(크기), line-height(행간), background(배경), color(색상), border-radius(둥근선), border(선) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 문의 제목 폰트의 font-size(크기), color(색상), line-height(행간) 값을 변경할 수 있습니다.
css/goods/goods.css
상품문의-비밀번호 인증 레이어 변경하기

1. 비밀번호 인증 레이어의 height(높이), background(배경), border(선) 값을 변경할 수 있습니다.
css/board/board.css
2. 비밀번호 인증 타이틀의 height(높이), background(배경), border(선) 값을 변경할 수 있습니다.
css/board/board.css
3. 비밀번호 인증 레이어 확인 버튼의 color(색상), border-radius(둥근선), background(배경) 값을 변경할 수 있습니다.
css/gd_button.css
상품문의-리스트 내용 변경하기(폰트/버튼)

1. 상품문의 내용 폰트의 color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 수정, 삭제 버튼의 color(색상), font-size(크기), border(선), background(배경), border-radius(둥근선) 값을 변경할 수 있습니다.
css/gd_button.css
상세 타이틀 및 info 레이어 폰트 변경하기

1. 상품 상세 타이틀의 font-size(크기), line-height(행간), text-align(정렬) 값을 변경할 수 있습니다.
css/gd_layout.css
2. info 레이어 영역의 font-size(크기), color(색상), line-height(행간), font-weight(굵기) 값을 변경할 수 있습니다.
css/goods/goods.css
상품 상세 탭 변경하기

1. 상품 상세페이지 탭 폰트의 color(색상), font-size(크기), line-height(행간), font-weight(굵기), text-align(정렬) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 게시글 등록 수량 폰트의 font-size(크기), color(색상), line-height(행간) 값을 변경할 수 있습니다.
css/goods/goods.css
3. 현재위치 탭표시 라인의 border-bottom(선) 값을 변경할 수 있습니다.
css/goods/goods.css
상품 상세 버튼 변경하기

1. 장바구니 버튼의 font-size(크기), text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_button.css
2. 바로구매 버튼의 font-size(크기), text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_button.css
상품 상세 리스트 영역 변경하기

1. 상품명 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 상품 할인가격 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
3. 상품 할인 전 가격 폰트의 color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
4. 상품 상세페이지 리스트 제목font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
5. 상품 상세페이지 리스트 내용 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
6. 공유하기, 찜하기 버튼의 font-size(크기), text-align(정렬), background(배경), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/goods/goods.css
주문결제
장바구니 버튼 변경하기

1. 쿠폰적용 버튼의 text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_button.css
2. 옵션변경 버튼의 text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_button.css
3. 선택상품 삭제, 주문 버튼의 text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_button.css
4. 전체주문 버튼의 text-align(정렬), background(배경), border(선), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/gd_button.css
장바구니 폰트 변경하기

1. 장바구니 상품명 폰트의 font-weight(굵기), color(색상) 값을 변경할 수 있습니다.
css/order/order.css
2. 장바구니 상품 옵션 폰트의 font-size(크기), line-height(행간), color(색상) 값을 변경할 수 있습니다.
css/order/order.css
3. 장바구니 상품 가격 폰트의 font-size(크기), color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/order/order.css
4. 장바구니 항목 타이틀 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/order/order.css
5. 장바구니 총 상품금액 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/order/order.css
6. 장바구니 총 합계금액 폰트의 color(색상), font-size(크기) 값을 변경할 수 있습니다.
css/order/order.css
Last updated
Was this helpful?
