<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Web Development on Creatify</title><link>https://www.creatify.site/tags/web-development/</link><description>Recent content in Web Development on Creatify</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 05 Aug 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.creatify.site/tags/web-development/index.xml" rel="self" type="application/rss+xml"/><item><title>WordPress vs Shopify 2026</title><link>https://www.creatify.site/blog/wordpress-vs-shopify-2026/</link><pubDate>Wed, 05 Aug 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/wordpress-vs-shopify-2026/</guid><description>&lt;h1 id="wordpress-vs-shopify-in-2026"&gt;WordPress vs Shopify in 2026&lt;/h1&gt;
&lt;p&gt;Every founder building a new website eventually hits the same question: &lt;strong&gt;WordPress or Shopify?&lt;/strong&gt; Both
platforms power millions of live sites, both can look professional in the right hands, and both get
recommended constantly online usually by people who only use one of them.&lt;/p&gt;</description></item><item><title>10 Web Development Trends</title><link>https://www.creatify.site/blog/10-web-development-trends/</link><pubDate>Wed, 08 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/10-web-development-trends/</guid><description>&lt;p&gt;Web development is changing every year as there are new innovations and upgrades in technologies that make user experience and development better.&lt;/p&gt;</description></item><item><title>Shopify Spring 2026 Edition: The Only Updates That Matter</title><link>https://www.creatify.site/blog/shopify-spring-2026-edition/</link><pubDate>Mon, 06 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/shopify-spring-2026-edition/</guid><description>&lt;p&gt;Shopify’s Spring 2026 edition introduces groundbreaking features designed to help merchants build, scale, and sell more effectively online. In this comprehensive guide, we’ll explore the most important updates and how they can transform your ecommerce business.&lt;/p&gt;</description></item><item><title>How To Add Custom Button To Product Page</title><link>https://www.creatify.site/blog/how-to-add-custom-button-to-product-page/</link><pubDate>Sat, 04 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-add-custom-button-to-product-page/</guid><description>&lt;p&gt;In this step-by-step guide, I’ll show you exactly how to add a fully customizable button to any product page on Shopify. This method requires no advanced coding skills, works with any theme, and blends seamlessly with your store’s design. Let’s dive in.&lt;/p&gt;</description></item><item><title>Story Timeline In Shopify(Without app- Free)</title><link>https://www.creatify.site/blog/story-timeline-in-shopify/</link><pubDate>Fri, 03 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/story-timeline-in-shopify/</guid><description>&lt;p&gt;Create a new section file called &lt;strong&gt;story-timeline.liquid&lt;/strong&gt; and add the following code:&lt;/p&gt;
&lt;details&gt;
&lt;summary&gt;Show Code&lt;/summary&gt;
&lt;pre tabindex="0"&gt;&lt;code class="language-liquid" data-lang="liquid"&gt;
{% assign wbs_id = block.id | replace: &amp;#39;_&amp;#39;, &amp;#39;&amp;#39; | downcase %}

{% style %}
 .wbs-journey-map-{{ wbs_id }} {
 padding: 60px 20px;
 background-color: {{ section.settings.background_color }};
 overflow: hidden;
 }

 .wbs-journey-map__heading-{{ wbs_id }} {
 text-align: center;
 margin-bottom: 20px;
 color: {{ section.settings.text_color }};
 font-size: {{ section.settings.heading_size }}px;
 }

 .wbs-journey-map__subheading-{{ wbs_id }} {
 text-align: center;
 margin-bottom: 60px;
 color: {{ section.settings.subtext_color }};
 font-size: {{ section.settings.subheading_size }}px;
 max-width: 600px;
 margin-left: auto;
 margin-right: auto;
 }

 .wbs-journey-map__container-{{ wbs_id }} {
 max-width: {{ section.settings.max_width }}px;
 margin: 0 auto;
 position: relative;
 }

 .wbs-journey-map__timeline-{{ wbs_id }} {
 position: relative;
 padding: 40px 0;
 }

 .wbs-journey-map__line-{{ wbs_id }} {
 position: absolute;
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 4px;
 height: 100%;
 background: linear-gradient(to bottom, {{ section.settings.timeline_start_color }}, {{ section.settings.timeline_end_color }});
 border-radius: 2px;
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__line-{{ wbs_id }} {
 left: 30px;
 }
 }

 .wbs-journey-map__stage-{{ wbs_id }} {
 position: relative;
 margin-bottom: 80px;
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.6s ease;
 }

 .wbs-journey-map__stage-{{ wbs_id }}.visible {
 opacity: 1;
 transform: translateY(0);
 }

 .wbs-journey-map__stage-{{ wbs_id }}:last-child {
 margin-bottom: 0;
 }

 .wbs-journey-map__stage-content-{{ wbs_id }} {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__stage-content-{{ wbs_id }} {
 grid-template-columns: 1fr;
 gap: 20px;
 padding-left: 80px;
 }
 }

 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-content-{{ wbs_id }} {
 direction: rtl;
 }

 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-text-{{ wbs_id }},
 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-image-{{ wbs_id }} {
 direction: ltr;
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__stage-{{ wbs_id }}:nth-child(even) .wbs-journey-map__stage-content-{{ wbs_id }} {
 direction: ltr;
 }
 }

 .wbs-journey-map__stage-marker-{{ wbs_id }} {
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%, -50%);
 width: {{ section.settings.marker_size }}px;
 height: {{ section.settings.marker_size }}px;
 background-color: {{ section.settings.marker_color }};
 border: 4px solid {{ section.settings.background_color }};
 border-radius: 50%;
 z-index: 2;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 0 0 8px {{ section.settings.marker_ring_color }};
 }

 @media screen and (max-width: 768px) {
 .wbs-journey-map__stage-marker-{{ wbs_id }} {
 left: 30px;
 }
 }

 .wbs-journey-map__stage-marker-{{ wbs_id }} svg {
 width: 50%;
 height: 50%;
 color: {{ section.settings.marker_icon_color }};
 }

 .wbs-journey-map__stage-number-{{ wbs_id }} {
 font-size: 18px;
 font-weight: 700;
 color: {{ section.settings.marker_icon_color }};
 }

 .wbs-journey-map__stage-text-{{ wbs_id }} {
 padding: 30px;
 background-color: {{ section.settings.card_background }};
 border-radius: {{ section.settings.card_border_radius }}px;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 transition: all 0.3s ease;
 }

 .wbs-journey-map__stage-text-{{ wbs_id }}:hover {
 transform: translateY(-5px);
 box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 .wbs-journey-map__stage-label-{{ wbs_id }} {
 display: inline-block;
 padding: 6px 16px;
 background-color: {{ section.settings.label_background }};
 color: {{ section.settings.label_text_color }};
 border-radius: 20px;
 font-size: 12px;
 font-weight: 600;
 text-transform: uppercase;
 letter-spacing: 1px;
 margin-bottom: 15px;
 }

 .wbs-journey-map__stage-title-{{ wbs_id }} {
 font-size: 28px;
 font-weight: 700;
 margin-bottom: 15px;
 color: {{ section.settings.text_color }};
 }

 .wbs-journey-map__stage-description-{{ wbs_id }} {
 font-size: 16px;
 line-height: 1.6;
 color: {{ section.settings.subtext_color }};
 }

 .wbs-journey-map__stage-image-{{ wbs_id }} {
 position: relative;
 border-radius: {{ section.settings.image_border_radius }}px;
 overflow: hidden;
 aspect-ratio: {{ section.settings.image_aspect_ratio }};
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .wbs-journey-map__stage-image-{{ wbs_id }} img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.5s ease;
 }

 .wbs-journey-map__stage-image-{{ wbs_id }}:hover img {
 transform: scale(1.05);
 }

 .wbs-journey-map__stage-image-placeholder-{{ wbs_id }} {
 width: 100%;
 height: 100%;
 background-color: #f4f4f4;
 display: flex;
 align-items: center;
 justify-content: center;
 }

 .wbs-journey-map__stage-image-placeholder-{{ wbs_id }} svg {
 width: 80px;
 height: 80px;
 opacity: 0.3;
 }

 .wbs-journey-map__cta-{{ wbs_id }} {
 text-align: center;
 margin-top: 60px;
 }

 .wbs-journey-map__cta-button-{{ wbs_id }} {
 display: inline-block;
 padding: 16px 40px;
 background-color: {{ section.settings.button_color }};
 color: {{ section.settings.button_text_color }};
 text-decoration: none;
 border-radius: {{ section.settings.button_border_radius }}px;
 font-size: 18px;
 font-weight: 600;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .wbs-journey-map__cta-button-{{ wbs_id }}:hover {
 background-color: {{ section.settings.button_hover_color }};
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .wbs-journey-map__empty-state-{{ wbs_id }} {
 text-align: center;
 padding: 80px 20px;
 color: {{ section.settings.subtext_color }};
 }

 .wbs-journey-map__empty-state-{{ wbs_id }} svg {
 width: 100px;
 height: 100px;
 margin-bottom: 20px;
 opacity: 0.3;
 }
{% endstyle %}

&amp;lt;wbs-journey-map-{{ wbs_id }} class=&amp;#34;wbs-journey-map-{{ wbs_id }}&amp;#34; {{ section.shopify_attributes }}&amp;gt;
 {% if section.settings.heading != blank %}
 &amp;lt;h2 class=&amp;#34;wbs-journey-map__heading-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings.heading }}&amp;lt;/h2&amp;gt;
 {% endif %}

 {% if section.settings.subheading != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__subheading-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings.subheading }}&amp;lt;/div&amp;gt;
 {% endif %}

 &amp;lt;div class=&amp;#34;wbs-journey-map__container-{{ wbs_id }}&amp;#34;&amp;gt;
 {% assign has_stages = false %}
 {% for i in (1..6) %}
 {% assign title_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_title&amp;#39; %}
 {% if section.settings[title_key] != blank %}
 {% assign has_stages = true %}
 {% break %}
 {% endif %}
 {% endfor %}

 {% if has_stages %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__timeline-{{ wbs_id }}&amp;#34;&amp;gt;
 &amp;lt;div class=&amp;#34;wbs-journey-map__line-{{ wbs_id }}&amp;#34;&amp;gt;&amp;lt;/div&amp;gt;

 {% for i in (1..6) %}
 {% assign title_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_title&amp;#39; %}
 {% assign label_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_label&amp;#39; %}
 {% assign description_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_description&amp;#39; %}
 {% assign image_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_image&amp;#39; %}
 {% assign icon_key = &amp;#39;stage_&amp;#39; | append: i | append: &amp;#39;_icon&amp;#39; %}

 {% if section.settings[title_key] != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-{{ wbs_id }}&amp;#34; data-stage&amp;gt;
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-marker-{{ wbs_id }}&amp;#34;&amp;gt;
 {% if section.settings[icon_key] == &amp;#39;number&amp;#39; %}
 &amp;lt;span class=&amp;#34;wbs-journey-map__stage-number-{{ wbs_id }}&amp;#34;&amp;gt;{{ i }}&amp;lt;/span&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;lightbulb&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M9.663 17h4.673M12 3v1m6.364 1.636l-.707.707M21 12h-1M4 12H3m3.343-5.657l-.707-.707m2.828 9.9a5 5 0 117.072 0l-.548.547A3.374 3.374 0 0014 18.469V19a2 2 0 11-4 0v-.531c0-.895-.356-1.754-.988-2.386l-.548-.547z&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;pencil&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M15.232 5.232l3.536 3.536m-2.036-5.036a2.5 2.5 0 113.536 3.536L6.5 21.036H3v-3.572L16.732 3.732z&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;cube&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;gift&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M12 8v13m0-13V6a2 2 0 112 2h-2zm0 0V5.5A2.5 2.5 0 109.5 8H12zm-7 4h14M5 12a2 2 0 110-4h14a2 2 0 110 4M5 12v7a2 2 0 002 2h10a2 2 0 002-2v-7&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;truck&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M13 16V6a1 1 0 00-1-1H4a1 1 0 00-1 1v10a1 1 0 001 1h1m8-1a1 1 0 01-1 1H9m4-1V8a1 1 0 011-1h2.586a1 1 0 01.707.293l3.414 3.414a1 1 0 01.293.707V16a1 1 0 01-1 1h-1m-6-1a1 1 0 001 1h1M5 17a2 2 0 104 0m-4 0a2 2 0 114 0m6 0a2 2 0 104 0m-4 0a2 2 0 114 0&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% elsif section.settings[icon_key] == &amp;#39;heart&amp;#39; %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% else %}
 &amp;lt;svg xmlns=&amp;#34;http://www.w3.org/2000/svg&amp;#34; fill=&amp;#34;none&amp;#34; viewBox=&amp;#34;0 0 24 24&amp;#34; stroke=&amp;#34;currentColor&amp;#34;&amp;gt;
 &amp;lt;path stroke-linecap=&amp;#34;round&amp;#34; stroke-linejoin=&amp;#34;round&amp;#34; stroke-width=&amp;#34;2&amp;#34; d=&amp;#34;M5 13l4 4L19 7&amp;#34; /&amp;gt;
 &amp;lt;/svg&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;

 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-content-{{ wbs_id }}&amp;#34;&amp;gt;
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-text-{{ wbs_id }}&amp;#34;&amp;gt;
 {% if section.settings[label_key] != blank %}
 &amp;lt;span class=&amp;#34;wbs-journey-map__stage-label-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings[label_key] }}&amp;lt;/span&amp;gt;
 {% endif %}
 &amp;lt;h3 class=&amp;#34;wbs-journey-map__stage-title-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings[title_key] }}&amp;lt;/h3&amp;gt;
 {% if section.settings[description_key] != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-description-{{ wbs_id }}&amp;#34;&amp;gt;{{ section.settings[description_key] }}&amp;lt;/div&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;

 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-image-{{ wbs_id }}&amp;#34;&amp;gt;
 {% if section.settings[image_key] != blank %}
 &amp;lt;img 
 src=&amp;#34;{{ section.settings[image_key] | image_url: width: 800 }}&amp;#34; 
 alt=&amp;#34;{{ section.settings[image_key].alt | escape }}&amp;#34;
 loading=&amp;#34;lazy&amp;#34;
 width=&amp;#34;{{ section.settings[image_key].width }}&amp;#34;
 height=&amp;#34;{{ section.settings[image_key].height }}&amp;#34;
 &amp;gt;
 {% else %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__stage-image-placeholder-{{ wbs_id }}&amp;#34;&amp;gt;
 {{ &amp;#39;image&amp;#39; | placeholder_svg_tag }}
 &amp;lt;/div&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;
 &amp;lt;/div&amp;gt;
 &amp;lt;/div&amp;gt;
 {% endif %}
 {% endfor %}
 &amp;lt;/div&amp;gt;

 {% if section.settings.show_cta and section.settings.cta_text != blank %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__cta-{{ wbs_id }}&amp;#34;&amp;gt;
 &amp;lt;a href=&amp;#34;{{ section.settings.cta_link }}&amp;#34; class=&amp;#34;wbs-journey-map__cta-button-{{ wbs_id }}&amp;#34;&amp;gt;
 {{ section.settings.cta_text }}
 &amp;lt;/a&amp;gt;
 &amp;lt;/div&amp;gt;
 {% endif %}
 {% else %}
 &amp;lt;div class=&amp;#34;wbs-journey-map__empty-state-{{ wbs_id }}&amp;#34;&amp;gt;
 {{ &amp;#39;image&amp;#39; | placeholder_svg_tag }}
 &amp;lt;p&amp;gt;{{ section.settings.empty_state_text }}&amp;lt;/p&amp;gt;
 &amp;lt;/div&amp;gt;
 {% endif %}
 &amp;lt;/div&amp;gt;
&amp;lt;/wbs-journey-map-{{ wbs_id }}&amp;gt;

&amp;lt;script&amp;gt;
 (function() {
 class JourneyMap{{ wbs_id }} extends HTMLElement {
 constructor() {
 super();
 this.stages = this.querySelectorAll(&amp;#39;[data-stage]&amp;#39;);
 this.observerOptions = {
 threshold: 0.2,
 rootMargin: &amp;#39;0px 0px -100px 0px&amp;#39;
 };
 }

 connectedCallback() {
 this.setupIntersectionObserver();
 }

 setupIntersectionObserver() {
 const observer = new IntersectionObserver((entries) =&amp;gt; {
 entries.forEach((entry, index) =&amp;gt; {
 if (entry.isIntersecting) {
 setTimeout(() =&amp;gt; {
 entry.target.classList.add(&amp;#39;visible&amp;#39;);
 }, index * {{ section.settings.animation_delay }});
 observer.unobserve(entry.target);
 }
 });
 }, this.observerOptions);

 this.stages.forEach(stage =&amp;gt; {
 observer.observe(stage);
 });
 }
 }

 customElements.define(&amp;#39;wbs-journey-map-{{ wbs_id }}&amp;#39;, JourneyMap{{ wbs_id }});
 })();
&amp;lt;/script&amp;gt;

{% schema %}
{
 &amp;#34;name&amp;#34;: &amp;#34;Story Timeline&amp;#34;,
 &amp;#34;settings&amp;#34;: [
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Content&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;heading&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Heading&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Our Product Journey&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;subheading&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Subheading&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Discover the story behind every product we create&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;empty_state_text&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Empty state text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Add stages to create your product journey&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 1&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 1&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Idea&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Every great product starts with a spark of inspiration and a vision to create something meaningful.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_1_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;lightbulb&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 2&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 2&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Design&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Our talented designers bring ideas to life with careful attention to detail and aesthetics.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_2_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;pencil&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 3&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 3&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Production&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Quality craftsmanship meets modern manufacturing to create products that last.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_3_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;cube&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 4&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 4&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Packaging&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Thoughtfully packaged with sustainability in mind, ready to delight from the moment you receive it.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_4_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;gift&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 5&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 5&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Delivery&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;Fast and reliable shipping ensures your product arrives safely at your doorstep.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_5_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;truck&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Stage 6&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_label&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Step 6&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_title&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Title&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;You&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_description&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Description&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;&amp;lt;p&amp;gt;The final and most important step - bringing joy and value to your life every day.&amp;lt;/p&amp;gt;&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;image_picker&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_image&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;stage_6_icon&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Icon&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;number&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Number&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;lightbulb&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Lightbulb&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;pencil&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Pencil&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;cube&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Cube&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;gift&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Gift&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;truck&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Truck&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;heart&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Heart&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;check&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Check&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;heart&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Call to action&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;checkbox&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;show_cta&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Show button&amp;#34;,
 &amp;#34;default&amp;#34;: true
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;inline_richtext&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;cta_text&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Button text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;Explore Our Products&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;url&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;cta_link&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Button link&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Layout&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;max_width&amp;#34;,
 &amp;#34;min&amp;#34;: 800,
 &amp;#34;max&amp;#34;: 1400,
 &amp;#34;step&amp;#34;: 50,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Maximum width&amp;#34;,
 &amp;#34;default&amp;#34;: 1200
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;heading_size&amp;#34;,
 &amp;#34;min&amp;#34;: 24,
 &amp;#34;max&amp;#34;: 56,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Heading size&amp;#34;,
 &amp;#34;default&amp;#34;: 40
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;subheading_size&amp;#34;,
 &amp;#34;min&amp;#34;: 14,
 &amp;#34;max&amp;#34;: 24,
 &amp;#34;step&amp;#34;: 1,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Subheading size&amp;#34;,
 &amp;#34;default&amp;#34;: 18
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_size&amp;#34;,
 &amp;#34;min&amp;#34;: 40,
 &amp;#34;max&amp;#34;: 80,
 &amp;#34;step&amp;#34;: 5,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker size&amp;#34;,
 &amp;#34;default&amp;#34;: 60
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;card_border_radius&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 40,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Card border radius&amp;#34;,
 &amp;#34;default&amp;#34;: 16
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;image_border_radius&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 40,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image border radius&amp;#34;,
 &amp;#34;default&amp;#34;: 12
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;select&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;image_aspect_ratio&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Image aspect ratio&amp;#34;,
 &amp;#34;options&amp;#34;: [
 { &amp;#34;value&amp;#34;: &amp;#34;1 / 1&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Square (1:1)&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;4 / 3&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Landscape (4:3)&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;16 / 9&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Wide (16:9)&amp;#34; },
 { &amp;#34;value&amp;#34;: &amp;#34;3 / 4&amp;#34;, &amp;#34;label&amp;#34;: &amp;#34;Portrait (3:4)&amp;#34; }
 ],
 &amp;#34;default&amp;#34;: &amp;#34;4 / 3&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Animation&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;animation_delay&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 500,
 &amp;#34;step&amp;#34;: 50,
 &amp;#34;unit&amp;#34;: &amp;#34;ms&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Delay between stages&amp;#34;,
 &amp;#34;default&amp;#34;: 150
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Colors&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;background_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;card_background&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Card background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;text_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#000000&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;subtext_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Subtext&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#666666&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;timeline_start_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Timeline start&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#a42325&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;timeline_end_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Timeline end&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#780406&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#a42325&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_icon_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker icon&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;marker_ring_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Marker ring&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#f9e6e6&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;label_background&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#f1f1f1&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;label_text_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Label text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#666666&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;header&amp;#34;,
 &amp;#34;content&amp;#34;: &amp;#34;Button&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#a42325&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_text_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Text&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#ffffff&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;color&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_hover_color&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Hover background&amp;#34;,
 &amp;#34;default&amp;#34;: &amp;#34;#780406&amp;#34;
 },
 {
 &amp;#34;type&amp;#34;: &amp;#34;range&amp;#34;,
 &amp;#34;id&amp;#34;: &amp;#34;button_border_radius&amp;#34;,
 &amp;#34;min&amp;#34;: 0,
 &amp;#34;max&amp;#34;: 40,
 &amp;#34;step&amp;#34;: 2,
 &amp;#34;unit&amp;#34;: &amp;#34;px&amp;#34;,
 &amp;#34;label&amp;#34;: &amp;#34;Border radius&amp;#34;,
 &amp;#34;default&amp;#34;: 8
 }
 ],
 &amp;#34;presets&amp;#34;: [
 {
 &amp;#34;name&amp;#34;: &amp;#34;Story Timeline&amp;#34;
 }
 ]
}
{% endschema %}
&lt;/code&gt;&lt;/pre&gt;&lt;/details&gt;
&lt;h2 id="story-timeline-shopify-section--build-a-powerful-brand-journey-experience"&gt;Story Timeline Shopify Section – Build a Powerful Brand Journey Experience&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Story Timeline Shopify Section&lt;/strong&gt; is an effective way to visually communicate your brand’s journey, milestones, and values. Instead of presenting plain text on your About Us page, a timeline section allows you to tell your story step by step in a clean, engaging, and interactive format. This approach helps customers connect emotionally with your brand and builds long-term trust.&lt;/p&gt;</description></item><item><title>HTML5 Mobile Meta Tags</title><link>https://www.creatify.site/blog/html5-mobile-meta-tags/</link><pubDate>Thu, 02 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/html5-mobile-meta-tags/</guid><description>&lt;h2 id="html5-mobile-meta-tags"&gt;HTML5 Mobile Meta Tags&lt;/h2&gt;
&lt;p&gt;There are several &lt;meta&gt; tags that are specifically geared to mobile devices. Among them are &lt;meta&gt; tags that tell browsers to take up the entire view-port and disable scaling, and to change the status bar color, which we will cover in the following section.&lt;/p&gt;</description></item><item><title>HTML5-Intro</title><link>https://www.creatify.site/blog/html5-intro/</link><pubDate>Wed, 01 Jul 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/html5-intro/</guid><description>&lt;p&gt;&lt;a href="https://html5up.net/"&gt;HTML5&lt;/a&gt; has long since become the standard markup language for web development, and it&amp;rsquo;s the foundation nearly every modern site is still built on today. Despite that, plenty of developers never fully learn its properties beyond the basics. This article covers the key features worth knowing to build a solid foundation.&lt;/p&gt;</description></item><item><title>How To Embed ANY Social Media Content in Shopify (800+ Platforms Supported)</title><link>https://www.creatify.site/blog/how-to-embed-social-media-content-in-shopify/</link><pubDate>Tue, 30 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-embed-social-media-content-in-shopify/</guid><description>&lt;p&gt;Tired of boring product pages? What if you could add Instagram reels, YouTube demos, or customer reviews with &lt;strong&gt;just a copy and paste?&lt;/strong&gt; No coding. No complex widgets. Just pure, simple magic.&lt;/p&gt;</description></item><item><title>How To Show Sale Discount Percentage on Shopify</title><link>https://www.creatify.site/blog/how-to-show-sale-discount-percentage-on-shopify/</link><pubDate>Mon, 29 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-show-sale-discount-percentage-on-shopify/</guid><description>&lt;h2 id="step-1-replace-the-code-in-_product-card-galleryliquid"&gt;Step 1: Replace the code in _product-card-gallery.liquid&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Replace the following code in _product-card-gallery.liquid&lt;/strong&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{%- if product.available == false or product.compare_at_price &amp;gt; product.price and product.available -%}
 &amp;lt;div
 class=&amp;quot;
 product-badges__badge product-badges__badge--rectangle
 {% if product.available == false %} color-{{ settings.badge_sold_out_color_scheme }}{% elsif product.compare_at_price &amp;gt; product.price %} color-{{ settings.badge_sale_color_scheme }}{% endif %}
 &amp;quot;
 &amp;gt;
 {%- if product.available == false -%}
 {{ 'content.product_badge_sold_out' | t }}
 {%- elsif product.compare_at_price &amp;gt; product.price -%}
 {{ 'content.product_badge_sale' | t }}
 {%- endif -%}
 &amp;lt;/div&amp;gt;
{%- endif -%}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;With the following code&lt;/strong&gt;&lt;/p&gt;</description></item><item><title>How To Add a Price Range Slider in Shopify (Free Code)</title><link>https://www.creatify.site/blog/how-to-add-price-range-slider-in-shopify/</link><pubDate>Sat, 27 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-add-price-range-slider-in-shopify/</guid><description>&lt;p&gt;In today’s e-commerce world, providing a seamless shopping experience is key to increasing sales. Shopify’s &lt;strong&gt;default filters&lt;/strong&gt; are great, but sometimes you want a more &lt;strong&gt;interactive and visually&lt;/strong&gt; appealing way for customers to filter products. In this tutorial, we&amp;rsquo;ll show you &lt;strong&gt;how to add a custom Price Range Slider Filter to your Shopify theme for free&lt;/strong&gt;.&lt;/p&gt;</description></item><item><title>How To Give Shopify Store Access Safely</title><link>https://www.creatify.site/blog/how-to-give-shopify-collaborative-access/</link><pubDate>Fri, 26 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-give-shopify-collaborative-access/</guid><description>&lt;p&gt;Running a Shopify store often means you need help. Whether you’re hiring a developer for custom theme work, a contractor to add products, or a team member to manage orders you need a safe way to grant access.&lt;/p&gt;</description></item><item><title>How To Setup Abandoned Cart In Shopify</title><link>https://www.creatify.site/blog/how-to-setup-abandoned-cart-in-shopify/</link><pubDate>Thu, 25 Jun 2026 00:00:00 +0000</pubDate><guid>https://www.creatify.site/blog/how-to-setup-abandoned-cart-in-shopify/</guid><description>&lt;p&gt;Did you know that out of every &lt;strong&gt;10 people who visit&lt;/strong&gt; an online store, 7 of them leave without finishing their purchase? That is a massive 70% of your potential revenue walking out the door!&lt;/p&gt;</description></item></channel></rss>