shopify의 Debut 테마 맞춤형 체험기
그중에서 겪은 일들도 내 비망록의 뜻에 융합시켜 여기에 기록한다.
나는 수시로 보도 내용을 보충하고 싶다.
주제곡
영역 제목
왠지 제목 부분에 덮여 있는 것처럼 회색 요소가 가득 칠해진 느낌이 든다.
이렇게 수정했습니다.
custom.css의 392행
삭제
.section-header:before{content: '';width: 100vw;height: 100%;position: absolute;top: 0;left: 0;background-color: #1d1d1f;
의background-color: #1d1d1f;
./*Section Header CSS Starts*/
.section-header{padding: 50px 0px;position: relative;}
.section-header:before{content: '';width: 100vw;height: 100%;position: absolute;top: 0;left: 0;background-color: #1d1d1f;
는 다음과 같이 수정되었다./*Section Header CSS Starts*/
.section-header{padding: 50px 0px;position: relative;}
.section-header:before{content: '';width: 100vw;height: 100%;position: absolute;top: 0;left: 0;
모음집 목록 표시 순서
모음집 목록은 알파벳 순서와 같은 규칙에 따라 정렬할 수 있다.
단, 매장 상황에 따라 소장 표시 순서를 바꾸려면 다음과 같은 방법으로 진행하세요.
다음 공식의 보도를 참고하시오.
제 상황은 슬라이드-category입니다.liquid가 수정되었습니다.
<div class="collections-box-main">
<div class="collections-box-outer">
<div id="owl-example1" class="owl-carousel">
{%- for collection in collections -%}
<div class="collections-box">
<div class="collections-box-inner">
<!--
These control flow tags check to see if there is a featured image for a collection.
If there isn't one, then we assign the image from the first product in the collection.
-->
다음과 같이 수정되었습니다. <div class="collections-box-main">
<div class="collections-box-outer">
<div id="owl-example1" class="owl-carousel">
{% for link in linklists.all-collections.links %}
{% assign collection = link.object %}
<div class="collections-box">
<div class="collections-box-inner">
<!--
These control flow tags check to see if there is a featured image for a collection.
If there isn't one, then we assign the image from the first product in the collection.
-->
all-collections
는 메뉴를 추가하는 이름입니다.Boxes Section 이미지 교체
custom.css 다음 줄을 수정합니다.
.boxes-box-2 .boxes-box-inner{background-image: url("box-2.jpg");}
box-2.jpg는 요소의 배경 그림입니다.box-2.jpg는 왼쪽에서 두 번째 그림을 세는 뜻입니다.
Reference
이 문제에 관하여(shopify의 Debut 테마 맞춤형 체험기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/masaru21/articles/f576adeb680383텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)