Skip to main content

Themes- Shoes

Shoes is a responsive theme designed to look sharp across all devices, whether it be smartphones, tablets or PC devices. It is also optimized for SEO and fast browsing.
This theme is compatible with all the settings you can find on the admin page, as well as Smart Themes. You can freely edit the HTML, CSS and JS of this theme using the code editor.
Cafe24's responsive themes use WebP, an image format that provides superior lossless compression for images, to minimize the image loading speed.
Internet Explorer, however, does not support WebP images, so you will also need to use .jpg, .png, .gif or other supported image formats.
Read the guide below for more information on how to edit this theme and change images.
This guide was created based on the admin website’s Advanced Mode and Smart themes.
You can read the Admin Guidelines for more details on the editor.

Get Shoes from the Cafe24 Storeoutlink_icon.PNG

 

Content guide

1. Adding products

1) Product images

From your Cafe24 admin, you can change the size of your images in Products > Add product > Advanced settings > Product images.

image2022-2-9_17-19-43.png

Select [Add multiple images] to add a different image for the product image and the list thumbnail image. Before adding any images, click [Adjust size] to change the size of your images.

image2022-2-14_12-1-6.png

Recommended image sizes 

Product image/Enlarged image List thumbnail image Additional image
680 x 680 px 415 x 415 px 415 x 415 px

 

2) Additional product images

From your Cafe24 admin, you can register additional product images for your product details page in Products > Add product > Advanced settings > Additional image.

image2022-2-14_10-59-48.png

Additional images can be found in the product image section of the product details page in an image slider.

PC Smartphone
image2022-2-14_11-1-5.png image2022-2-14_11-2-18.png

 

3) Product data display

From your Cafe24 admin, you can change the style of product prices and product summaries in Product > Products > Product data display.
You can configure these settings separately for every type of page using the tabs: home page, product list and product details.
You can also adjust the settings differently for each product category in the home page and product list tabs. Choose the product information you want to display.

Note

This menu does not allow you to change the display settings of product information included in the “Four-row product layout” and “Banner-type product layout” sliders on your home page, as well as the “Recommended products” and “New products” sliders for each product category.

image2022-2-9_17-18-47.pngimage2022-2-7_10-57-35__5_.png

 

 

2. Layout

1) Logo

Add your store logo in Smart Themes Editor > Logo section > Edit > Properties.
To make sure your logo is clearly visible on mobile devices, add an image that is twice as big as the size you actually see.
(For example, if the image size on screen is 85 x 28 px, you must upload a 172 x 56 px image. *Recommended image: 172 x 56 px)
Follow the same method to add a logo image to your footer.

image2022-2-9_14-57-53.png

image2022-2-9_14-58-29.png

 

2) Top banner (text)

In Smart Themes Editor, hover your mouse over the banner at the top of the page and click [Edit].
Edit the text between the <div class="desc"> and </div> tags.

<div class="desc">50% DISCOUNT ON EVERYTHING</div>

If you wish to remove the banner, simply click the "X" button in the top-right corner of the selected section.

image2022-2-9_15-0-29.png

 

3) Product categories

From your Cafe24 admin, you can configure product categories in Products > Categories > Product categories.

image2022-2-9_15-8-33.png

Your product categories will appear in your theme's header and sidebar.

image2022-2-9_15-10-34.png

 

4) Footer information

From your Cafe24 admin, you can configure your store information in My Store > General > Store profile.
These details will appear in your theme's footer.

image2022-2-9_15-6-21.png

 

5) Social media links

You can link your social media accounts in the footer section of your website.
Open the “/layout/basic/footer.html” file.

image2022-2-9_17-32-3.png

Find the source codes below and replace the content in the href="” attribute of the <a> tag with a link to your account.

<div class="sns">
<a href="Link"><!--@import(/svg/icon-instagram.html)-->instagram</a>
<a href="Link"><!--@import(/svg/icon-facebook.html)-->facebook</a>
<a href="Link"><!--@import(/svg/icon-youtube.html)-->youtube</a>
<a href="Link"><!--@import(/svg/icon-twitter.html)-->twitter</a>
</div>

 

 

3. Main contents

1) Top banner slider

This banner slider placed at the top of your landing page is your store's main visual element.

  1. Place the URL link to which you want to redirect users in the href="" attribute of the <a> tag under <div class="here">.
  2. Edit the button name between <a href="Link" class="button"> and </a>.
  3. Edit the main text between <h2 class="text"> and </h2>.
  4. Edit the sub text between <p class="sub-text”> and </p>.
  5. Prepare a WebP and JPG/PNG/GIF image each for PC, tablets and smartphones.
  6. Add the WebP image to the source srcset="” attribute.
  7. Add the JPG/PNG/GIF image to the img src="” attribute.
<div class="swiper-slide">
<div class="item">
<div class="here">
<p class="sub-text">Sub Text</p>
<h2 class="text">Main Text</h2>
<a href="Link" class="button">Button Name</a>
</div>
<!-- PC image -->
<picture class="RW">
<source srcset="BannerImage_PC.webp" type="image/webp">
<img src="BannerImage_PC.jpg" width="100%" height="100%" alt="main banner">
</picture>
<!-- tablet image -->
<picture class="RTB">
<source srcset="BannerImage_Tablet.webp" type="image/webp" />
<img src="BannerImage_Tablet.jpg" width="100%" height="100%" alt="main banner">
</picture>
<!-- mobile image -->
<picture class="RMB">
<source srcset="BannerImage_Smartphone.webp" type="image/webp" />
<img src="BannerImage_Smartphone.jpg" width="100%" height="100%" alt="main banner">
</picture>
</div>
</div>

Recommended image sizes 

PC Tablet Smartphone
1920 x 900 px 768 x 760 px 360 x 580 px

This banner slider has two images by default. If you want to add more banners, simply copy the <div class="swiper-slide"> [...] </div> code shown above.

Example of the slider's structure

<div class="swiper-slide"> [...] </div>
<div class="swiper-slide"> [...] </div>
<div class="swiper-slide"> [...] </div>

 

2) Card-type banner (three rows)

You can edit this section's source code by clicking on a card-type image in the Smart Themes Editor.

image2022-2-9_15-24-59.png

You can directly edit the source code in the HTML viewer or through the HTML editor window that opens when you click [Edit].

  1. Place the URL link to which you want to redirect users in the href="" of the <a> tag.
  2. Edit the banner text between <p class="text"> and </p>.
  3. Edit the button name between <a href="Link" class="button"> and </a>.
  4. Prepare banner images of equal dimensions in both WebP and JPG/PNG/GIF formats.
  5. Add the WebP image to the source srcset="” attribute.
  6. Add the JPG/PNG/GIF image to the img src="” attribute.
<div class="collection-item" module="custom_moduleedit_2">
<div class="here">
<p class="text">Banner Text</p>
<a href="Link" class="button">Button Name</a>
</div>
<!-- PC image -->
<picture class="RW">
<source srcset="BannerImage_PC.webp" type="image/webp">
<img src="BannerImage_PC.jpg" width="100%" height="100%" alt="banner1" loading="lazy">
</picture>
<!-- tablet image -->
<picture class="RTB">
<source srcset="BannerImage_Tablet.webp" type="image/webp">
<img src="BannerImage_Tablet.jpg" width="100%" height="100%" alt="banner1" loading="lazy">
</picture>
<!-- mobile image -->
<picture class="RMB">
<source srcset="BannerImage_Smartphone.webp" type="image/webp">
<img src="BannerImage_Smartphone.jpg" width="100%" height="100%" alt="banner1" loading="lazy">
</picture>
</div>

Recommended image sizes 

PC Tablet Smartphone
640 x 720 px 768 x 460 px 360 x 250 px

Note

You can check the section's source code range and location by selecting it and checking the marked area in the HTML viewer of Smart Themes Editor. 
You can select the entire source code section for the card-type three-row banner and delete or move it.
<!-- collection --> Section <!-- // collection -->

 

3) Product layout slider (four rows)

You can use this section at the bottom of the page to display the products you sell in a four-row layout. You can display 4 products at a time on PC screens, 3 products on tablet screens and 2 products on smartphone screens. (Swipe available)

image2022-2-9_15-22-51.png

 

4) Parallax scrolling background image

This background image section uses the parallax scrolling technique.

Changing the banner link and text

  1. Place the URL link to which you want to redirect users in the href="" attribute of the <a> tag under <div class="here">.
  2. Edit the button name between <a href="Link" class="button"> and </a>.
  3. Edit the banner text between <p class="text”> and </p>.
  4. Prepare a WebP and JPG/PNG/GIF image each for PC, tablets and smartphones.
  5. Add the WebP image to the source srcset="” attribute.
<section class="middleBanner" module="custom_moduleedit_5">
<div class="banner"></div>
<div class="item">
<div class="here">
<p class="text">Banner Text</p>
<a href="Link" class="button">Button Name</a>
</div>
</div>
</section>

Changing the banner images

  1. Open the “/layout/basic/css/main.css” file.
  2. Look for the source code below and change the image file URL in "background:url("Change Background Image URL") no-repeat center”.
 .middleBanner .banner { width:100%; height:100%; background:url("//img.echosting.cafe24.com/skinTheme/accessory2/en_US/main/img_parallax_banner.jpg") no-repeat center; background-size:cover; }

 

5) Banner-type product layout

This is a product layout that is integrated with an image banner.

Product layout

  • The module codes "product_listmain_2” and “product_listmain_3" are used for this section. You can find them in Products > Product layout > Home page category layout > Manage home categories on your Cafe24 admin.
  • The text entered for [Product category] is displayed as the title of this section.
  • This section will only become a slider once you upload at least two images. (Swipe available)

Banner images

  1. Prepare banner images of equal dimensions in both WebP and JPG/PNG/GIF formats. (*Recommended dimensions: 850 x 587 px)
  2. Add the JPG/PNG/GIF image to the img src="” attribute.
  3. Add the WebP image to the source srcset="” attribute.
<picture>
<source srcset="BannerImage.webp" type="image/webp">
<img src="BannerImage.jpg" alt="banner" loading="lazy" width="100%" height="100%">
</picture>

Note

You can check the section's source code range and location by selecting it and checking the marked area in the HTML viewer of Smart Themes Editor.
You can select the entire source code section for the banner-type product layout and delete or move it.
<!-- image slide --> Section <!-- // image slide -->

 

6) Video-type banner

You can add a banner made out of a video here.
The video starts loading and expands to the full screen when a user clicks on the banner.

image2022-2-10_16-29-9.png

image2022-2-10_16-29-42.png

Change the file links for an image or video banner as follows.

  1. Prepare an image (.webp and .jpg/.png/.gif) to use on the banner before the video starts.
  2. Add the WebP image to the source srcset="” attribute.
  3. Add the JPG/PNG/GIF image to the img src="” attribute.
  4. Replace the link in source data-src="" under the video tag with a link to your video.
<section class="videoBanner" module="custom_moduleedit_8">
<div class="banner">
<!-- PC image -->
<picture class="RW">
<source srcset="BannerImage_PC.webp" type="image/webp">
<img src="BannerImage_PC.jpg" alt="banner" loading="lazy" width="100%" height="100%">
</picture>
<!-- tablet image -->
<picture class="RTB">
<source srcset="BannerImage_Tablet.webp" type="image/webp">
<img src="BannerImage_Tablet.jpg" width="100%" height="100%" alt="banner" loading="lazy">
</picture>
<!-- mobile image -->
<picture class="RMB">
<source srcset="BannerImage_Smartphone.webp" type="image/webp">
<img src="BannerImage_Smartphone.jpg" width="100%" height="100%" alt="banner" loading="lazy">
</picture>
<div class="play"><img src="/SkinImg/img/btn_play.png" width="100%" height="100%" alt="Video Play"></div>
</div>
<div class="video-modal">
<div class="video-modal__container">
<div class="video-modal__content">
<button type="button" class="video-modal__close"><img src="/SkinImg/img/icon_close.png" width="100%" height="100%" alt="Video"></button>
<video muted controls preload="auto" poster="/SkinImg/img/play.png" class="video-modal__video-src linkVideo" id="video">
<source data-src="VideoLink.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</section>

Recommended image sizes 

PC Tablet Smartphone
1920 x 720 px 768 x 460 px 720 x 680 px

 

7) Instagram

Install the Instagram Widget from Cafe24 Store to use this section.
Once the app is installed, select this section in Smart Themes Editor and delete it.

 

 

4. Customizing icons

You can change the icons that appear on your product pages (Add to cart, Add to wishlist, etc.) through the Cafe24 admin.

image2022-2-9_15-18-23.png

From the Cafe24 admin, go to Themes (PC) > Features > Icons for your store's PC version, and Themes (Mobile) > Features > Icons for your store's mobile version.
Change the icons to any image that matches the recommended dimensions.

Recommended image sizes 

PC Smartphone (PC size x2)
50 x 50 px 100 x 100 px

 

 

CSS editing

Media query configuration

Since Beauty is a responsive theme, when you edit the style of either the smartphone, tablet or PC, you will also have to edit the style included in the corresponding media query syntax.
Media queries must be configured as follows.
(This example shows cases in which the font size needs to be adjusted depending on the device.)

Source code example

/*The source codes used accross all devices (smartphones, tablets and PC) 
are put at the top. */
.banner { color:#000; }

/*The styles that need to be added separately for each device are added below. */
/* Smartphones */
@media all and (max-width:767px) {
.banner { font-size:14px; }
}

/* Tablets */
@media all and (max-width:1024px) {
.banner { font-size:16px; }
}

/* PC */
@media all and (min-width:1025px) {
.banner { font-size:20px; }
}

 

Responsive class
These are the classes used for showing/hiding elements depending on the device. They only have the display property.

  Smartphone Tablet Smartphone & Tablet PC
Global
Class
RMI (Responsive Mobile Inline) RTI (Responsive Tablet Inline) - RWB (Responsive Web Block)
RMB (Responsive Mobile Block) RTB (Responsive Tablet Block) RTMB (Responsive Tablet Mobile Block) RWI (Responsive Web Inline)
RMIB (Responsive Mobile Inline-Block) RTIB (Responsive Tablet Inline-Block) RTMI (Responsive Tablet Mobile Inline-Block) RWIB (Responsive Web Inline-Block)
- - - RW (display:none for smartphones/tablets)
display

Only for smartphones
display:none for PC/tablets

Only for tablets
display:none for smartphones/PC

Only for smartphones/tablets
display:none for PC
Only for PC
display:none for smartphones/tablets

 

Usage example 

You can use media queries to add a line-break to a text on smartphones only.
When the RMB class is added to the < br > tag, the < br > tag will become display:none on PC sizes, making the line-break disappear, and display:block on smartphone sizes, creating a line-break.

<p>This sentence will only have <br class="RMB">a line-break on smartphones.</p>
Text as seen on a desktop Text as seen on a smartphone
This sentence will only have a line-break on smartphones. This sentence will only have
a line-break on smartphones.

 

Prev Next
Was this page helpful?
Update
Related Guides
On this page