Shopify’s flexibility is built on its powerful theming system. In this article, we dive deep into customizing Shopify themes using Liquid—Shopify’s templating language—combined with HTML and CSS. Whether you’re building a bespoke storefront or refining an existing theme, this guide will walk you through best practices, real-world code examples, and techniques for creating a responsive, accessible, and SEO-friendly design.
Shopify themes are organized into a structured set of files and folders. Understanding this architecture is the first step in customizing your store.
product.liquid
, collection.liquid
, and index.liquid
define the overall structure of different pages.header.liquid
, footer.liquid
) that can be added, removed, or rearranged via the theme editor.
/assets
├── theme.css
├── theme.js
/layout
├── theme.liquid
/templates
├── product.liquid
├── collection.liquid
/sections
├── header.liquid
├── footer.liquid
/snippets
├── social-links.liquid
This modular structure makes it easier to maintain and update your theme.
Liquid is the backbone of Shopify themes. It allows you to inject dynamic content and control the display of data.
{{ }}
to print variables or output data.liquid:
<h1>{{ product.title }}</h1>
{% if %}
, {% for %}
, and other tags to implement conditional logic and loops.liquid:
{% if product.available %}
<p>In Stock</p>
{% else %}
<p>Sold Out</p>
{% endif %}
| upcase
, | date: "%Y-%m-%d"
, etc.liquid:
<p>Released on: {{ product.created_at | date: "%B %d, %Y" }}</p>
liquid:
{% if product.metafields.custom.featured %}
<div class="featured-label">Featured</div>
{% endif %}
Shopify sections can appear in the theme editor using JSON schemas, allowing developers to easily link to other articles through customizable settings.
Follow this guide to see a detailed review, to see a detailed guide.
HTML provides the structure, while CSS brings design and responsiveness. A clean HTML structure is crucial for accessibility and SEO.
Imagine you want to add a promotional banner on your product page. Create a new section file, e.g., sections/custom-banner.liquid
:
liquid:
<div class="custom-banner">
<h2>{{ section.settings.banner_heading }}</h2>
<p>{{ section.settings.banner_text }}</p>
</div>
<style>
.custom-banner {
background-color: #f9f9f9;
padding: 20px;
text-align: center;
border-bottom: 1px solid #ddd;
}
.custom-banner h2 {
font-size: 2rem;
margin: 0;
}
.custom-banner p {
font-size: 1rem;
color: #666;
}
</style>
Then, include the section in your product.liquid
template:
liquid:
{% section 'custom-banner' %}
css:
@media (max-width: 768px) {
.custom-banner h2 {
font-size: 1.5rem;
}
}
<head>
for faster rendering.Let’s combine our skills to create a custom product page layout.
In sections/custom-product.liquid
:
liquid:
<div class="product-container">
<div class="product-image">
<img src="{{ product.featured_image | img_url: '800x' }}" alt="{{ product.title }}">
</div>
<div class="product-details">
<h1>{{ product.title }}</h1>
<p>{{ product.description }}</p>
{% if product.available %}
<button class="btn-buy">Buy Now</button>
{% else %}
<span class="sold-out">Sold Out</span>
{% endif %}
</div>
</div>
<style>
.product-container {
display: flex;
flex-wrap: wrap;
margin: 20px 0;
}
.product-image {
flex: 1 1 40%;
padding: 10px;
}
.product-details {
flex: 1 1 60%;
padding: 10px;
}
.btn-buy {
background-color: #ff4500;
color: #fff;
padding: 10px 20px;
border: none;
cursor: pointer;
}
.sold-out {
color: #a00;
font-weight: bold;
}
</style>
Then include it in your product.liquid
template:
liquid:
{% section 'custom-product' %}
Add dynamic metafields or settings to adjust text, images, or call-to-actions based on product attributes. For example:
liquid:
{% if product.metafields.custom.special_offer %}
<div class="special-offer">
{{ product.metafields.custom.special_offer }}
</div>
{% endif %}
Mastering Shopify theme customization involves combining the dynamic power of Liquid with the structural clarity of HTML and the visual flair of CSS. By understanding the theme architecture, writing modular code, and applying performance best practices, you can build modern, responsive, and engaging storefronts. This guide provides the foundation and advanced techniques to create themes that not only look great but also drive conversions and rank well in search engines.
UNHYDE is a Munich-based web development agency dedicated to pushing boundaries in web development, user experience, and digital marketing. Our mission is to create high-performing digital platforms that drive meaningful customer engagement and measurable business growth. We operate internationally and are a recognized Shopify Partner agency, having successfully launched countless websites and webstores worldwide.
For more insights or if you're ready to take your website to the next level, feel free to reach out to us at UNHYDE®, the web design agency. We’re always here to collaborate and craft tailored solutions that meet your unique needs.
get in touch
MAKE CONTACT