🖥️Hahanotte_PC 스킨 가이드
공통
포인트 컬러 일괄 변경하기
Hahanotte스킨에 적용되어 있는 기본 컬러 코드 #0540be 입니다
관리자 > 디자인 메뉴 접속
스타일시트/CSS 변경 - 좌측 하단 폴더트리 내 스타일시트/CSS더블 클릭하여 아래와 같이 표시된 스타일 시트를 오픈합니다. - common.css를 더블 클릭 하여 common/common.css 파일을 엽니다.
화면 최상단에서 --primary-default의 값을 원하는 포인트 컬러 코드로 변경할 수 있습니다.
:root {
--primary-default: #0540be; /* 포인트 컬러 */
--primary-hover: #00319a; /* 포인트 컬러 hover */
--secondary-default: #e7ff34; /* 서브 컬러 */
--neutrals-gray: #edebe5;
--neutrals-dark: #000;
--font-size: 14px; /* 기본 폰트 사이즈 */
--font-family: 'Pretendard variable'; /* 기본 폰트 명 */
--font-regular: 400;
--font-medium: 500;
--font-bold: 700;
--min-width: 1800px; /* 화면이 최소로 작아질 수 있는 너비 */
--max-width: 1920px; /* 화면이 최대한 넓어 질 수 있는 너비 */
}사이트 전체 폰트 사이즈 변경 시 --font-size의 값 수정, 사이트 전체 서체 변경 시 --font-family 값을 변경할 수 있습니다.
GNB 변경하기

GNB 메뉴에 마우스를 올리면 헤더 영역 전체 background-color(배경색)이 생기며 이 값을 변경할 수 있습니다.
GNB메뉴, 사용자 메뉴(로그인, 마이페이지 등) Color(폰트 컬러)를 수정 할 수 있습니다.
css > layout/layout.css
body:not(.body-main) #header_warp,
#header_warp.is-scroll,
#header_warp.is-active {
background-color: rgba(255, 255, 255, 0.9); /* 배경색 변경 */
color: #000; /* GNB메뉴와, 사용자 메뉴(로그인, 마이페이지...) 색 변경 */
}
#header_warp:has(.gnb.is-active)::after {
content: '';
position: absolute;
width: 100%;
height: 142px;
background-color: rgba(255, 255, 255, 0.9); /* 배경색 변경 */
}장바구니 담긴상품 수량 폰트의 color(색상) 값을 변경할 수 있습니다.
css > layout/layout.css
.top_member_box > li strong {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 20px;
background-color: var(--secondary-default); /* 배경색 변경 */
min-width: 22px; /* 너비 변경 */
height: 22px; /* 높이 변경 */
color: #000; /* 폰트 색 */
font-size: calc(var(--font-size) - 2px); /* 폰트 크기 */
font-weight: var(--font-medium);
line-height: 14px;
}검색창 폰트 변경하기
입력 폰트 Color(폰트 색),배경 이미지 (background-image), 배경 색(background-color)를 바꿀 수 이습니다.
css/layout/layout.css
#header .top_search .top_text_cont .top_srarch_text {
display: block;
float: right;
background: #000 url(../../img/common/btn/btn_top_search.svg) no-repeat right; /* 돋보기 아이콘 변경 */
width: 34px; /* 너비 변경 */
height: 34px; /* 너비 변경 */
border-radius: 8px 8px;
box-sizing: border-box;
color: #fff; /* 폰트색 변경 */
-moz-transition: all 0.35s;
-webkit-transition: all 0.35s;
}2. 최근검색어 폰트의 font-size(크기), font-weight(굵기) 값을 변경할 수 있습니다. css/layout/layout.css
.recent_box dt {
font-size: 13px;
margin-bottom: 10px;
font-weight: bold;
}3. 추천상품 폰트의 font-size(크기), font-weight(굵기), text-align(정렬) 값을 변경할 수 있습니다.
css/layout/layout.css
.recom_box dt {
width: 100%;
font-size: 13px;
font-weight: var(--font-bold);
line-height: 19px;
text-align: center;
margin-bottom: 10px;
}푸터 변경하기 (폰트/컬러)

1. 푸터의 background-color(배경색)을 바꿀 수 있습니다.
css/layout/layout.css
#footer_wrap {
background-color: var(--primary-default);
}2. 푸터 정보영역 폰트의 color(색상), font-size(크기), line-height(행간) 값을 변경할 수 있습니다.
css/layout/layout.css
.foot_list ul li a {
padding: 0 16px;
font-weight: 700;
color: red; /* 컬러 변경 */
}
.foot_cont .foot_info {
color: #860e0e; /* 컬러 변경 */
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}
/* 아래 코드 추가 */
.foot_cont .foot_info a {
color: red; /* 컬러 변경 */
}
웹폰트 적용하기
1. 관리자 페이지 > 디자인 메뉴에 접속합니다.
2. 좌측 하단 폴더트리 내 “스타일시트/CSS”를 더블 클릭하여 스타일시트 리스트 중 reset.css를 오픈하세요.

3. reset.css 스타일시트의 3번째 줄에 @import url(’외부 스타일시트 경로’)을 변경할 수 있습니다.
css/reset.css
@import url("https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.min.css");
/* 5번째줄에 추가 */4. 13번째 줄의 font-family의 맑은 고딕으로 설정된 폰트를 "나눔고딕" 또는 Nanum Gothic(변경할 폰트명)으로 수정하세요. (한글 폰트 파일명의 경우 " "입력)
css/common/common.css
.:root {
...
--font-family: 'Pretendard variable';
...
}
common.css --font-family에서 변경된 폰트는 reset.css 에서 하위 코드에 적용 됩니다.
css/reset.css
.godo * {
font-family: var(--font-family), Pretendard, -apple-system, BlinkMacSystemFont,
system-ui, Roboto, sans-serif;
}
...
body,
th,
td,
input,
select,
textarea,
button {
font-size: var(--font-size);
line-height: 1.5;
font-family: var(--font-family), Pretendard, -apple-system, BlinkMacSystemFont,
system-ui, Roboto, Dotum, '돋움', sans-serif;
color: #333;
}※ 웹폰트 사용시 속도저하가 발생할 수 있어 권장하지 않습니다.
메인
최근 본 상품 변경하기

1. 최근 본 상품 영역의 background(배경) 값을 변경할 수 있습니다.
css/layout/layout.css
2. 타이틀 폰트의 color(색상), text-align(정렬) 값을 변경할 수 있습니다.
css/layout/layout.css
3. 최근 본 상품 오버시 내용 border(선), background(배경) 값을 변경할 수 있습니다.
css/layout/layout.css
4. 상품 가격 폰트의 color(색상) 값을 변경할 수 있습니다.
css/layout/layout.css
5. 페이징 폰트의color(색상) 값을 변경할 수 있습니다.
css/layout/layout.css
상품 리스트 변경하기

1. 상품명 color(색상) 값을 변경할 수 있습니다. (한줄 말줄임이 처리가 되어 있습니다.)
css/goods/list.css
2. 할인가격 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/goods/list.css
상품상세
상품 상세 상단 변경하기(폰트)

1. 상품명 폰트의 font-size(크기) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 상품 정보 타이틀 폰트의 color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/goods/goods.css
3. 상품 가격 폰트의 font-size(크기), font-weight(굵기) 값을 변경할 수 있습니다.
css/goods/goods.css
4. 총 합계금액 폰트의 font-size(크기), font-weight(굵기) 값을 변경할 수 있습니다.
css/goods/goods.css
5. 총 합계금액 가격 폰트의 color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/goods/goods.css
6. 총 합계금액 가격 폰트의 font-size(크기) 값을 변경할 수 있습니다.
css/goods/goods.css
상품 상세 상단 변경하기(버튼)

1. 공유하기 버튼의 background(배경), border(선) 값을 변경할 수 있습니다.
css/button.css
2. 조건별 배송 버튼의 font-size(크기), background(배경) 값을 변경할 수 있습니다.

css/button.css
3. 장바구니 버튼의 color(색상), font-size(크기), border(선), background(배경), text-align(정렬), font-weight(굵기) 값을 변경할 수 있습니다.

css/button.css
4. 바로구매 버튼의 color(색상), font-size(크기), border(선), background(배경), text-align(정렬), font-weight(굵기) 값을 변경할 수 있습니다.
css/button.css
상품 상세 상단 변경하기

1. 셀렉트 영역의 border(선), background(배경) 값을 변경할 수 있습니다.
css/layout/layout.css

2. 상품명 아래 border-bottom(선) 값을 변경할 수 있습니다.
css/goods/goods.css
3. 선택한 옵션 영역의 border-bottom(선) 값을 변경할 수 있습니다.
css/layout/layout.css
선택한 옵션영역의 background(배경) 값을 변경할 수 있습니다.
css/layout/layout.css

총 합계금액 구분 영역의 border-top(선) 값을 변경할 수 있습니다.
css/goods/goods.css
상품 상세 탭 변경하기

1. 상품 상세 탭 선택시 color(색상), font-weight(굵기), border(선) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 글 등록 수량 폰트의 color(색상) 값을 변경할 수 있습니다.
css/goods/goods.css
상품 상세 상품문의 영역-리스트 변경하기

1. 상품 문의 타이틀 폰트의 font-size(크기) 값을 변경할 수 있습니다.
css/goods/goods.css
2. 상품문의 전체보기 버튼의 color(색상), font-weight(굵기), border(선), background(배경), text-align(정렬) 값을 변경할 수 있습니다.
css/button.css
3. 상품문의 글쓰기 버튼의 color(색상), font-weight(굵기), border(선), background(배경), text-align(정렬) 값을 변경할 수 있습니다.
css/button.css
4. 페이징 버튼의 color(색상), font-weight(굵기), border(선) 값을 변경할 수 있습니다.
css/button.css
상품 상세 상품문의 영역-리스트 내용 변경하기

1. 수정 버튼의 background(배경), border(선) 값을 변경할 수 있습니다.
css/button.css
2. 상품문의 내용 펼침 영역의 background(배경) 값을 변경할 수 있습니다.
css/goods/goods.css
주문결제
장바구니 화면 변경하기

1. 장바구니 타이틀 폰트의 color(색상), font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/order/order.css
2. 현재 스텝 표시 폰트의 color(색상), font-weight(굵기) 값을 변경할 수 있습니다.
css/order/order.css
3. 다음 진행 스텝 표시 폰트의 font-size(크기), color(색상) 값을 변경할 수 있습니다.
css/order/order.css
4. 장바구니 타이틀 폰트 하단의 border-bottom(선) 값을 변경할 수 있습니다.
css/order/order.css

5. 장바구니 상품금액/배송비/최종 결제금액의 color(색상), font-size(사이즈), font-weight(굵기) 값을 변경할 수 있습니다..
css/order/order.css
6. 선택상품주문 버튼은 마우스 오버 전(.btn_order_choice_buy) 과 오버 시(.btn_order_choice_buy:hover)의 border(선), font-size(사이즈), color(색상) 값으로 각각 변경할 수 있습니다.
css/order/button.css
7. 전체상품주문 버튼은 마우스 오버 전(.btn_order_whole_buy) 과 오버 시(.btn_order_whole_buy:hover) 의 background(배경) 컬러, border(선), color(색상), font-size(사이즈) 값으로 각각 변경할 수 있습니다.
css/button.css
Last updated
Was this helpful?


