Shopify themes, liquid, logos, and UX
I am using Craft theme.
To get social proof, i want to add the tv and news channels that shows my product.
How can i add something like this one under "As seen On"
Solved! Go to the solution
This is an accepted solution.
Hello @Pyimk,
Here's a step-by-step guide to add a new section in Shopify:
Navigate to the Theme Library:
Access the Code Editor:
Proceed to Add a New Section:
Assign a Name:
Paste the Code:
Save Changes:
{% style %}
.icons-section .heading {
text-align: center;
}
.icons-section .heading h4 {
text-transform: capitalize;
font-weight: bold;
}
.icons-section .row {
display: flex;
column-gap: 30px;
justify-content: center;
}
.icons-section .row .col img {
width: 100px;
height: auto;
object-fit: contain;
box-shadow: 3px 3px 6px 7px whitesmoke;
border-radius: 50%;
}
{% endstyle %}
<div class="icons-section">
<div class="container">
<div class="inner-icons">
<div class="heading">
{% if section.settings.heading != '' %}
<h4>{{ section.settings.heading }}</h4>
{% endif %}
</div>
<div class="row">
{% for block in section.blocks %}
<div class="col">
{% if block.settings.icons != '' %}
<img src="{{ block.settings.icons | img_url: 'master' }}" alt="{{ block.settings.icons.alt }}">
{% endif %}
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% schema %}
{
"name": "Icons",
"tag": "section",
"class": "icons_section",
"blocks": [
{
"name": "Icons",
"type": "Icons",
"settings": [
{
"type": "image_picker",
"id": "icons",
"label": "Icons"
}
]
}
],
"settings": [
{
"type": "text",
"id": "heading",
"label": "Heading"
}
],
"presets": [
{
"name": "Icons",
"settings": {}
}
]
}
{% endschema %}
Please take a look at the screenshots.
Feel free to reach out if you have any additional questions. If this solution is helpful, please consider liking and accepting it.
S.P
Good day @Pyimk, Kindly provide me with the link to your code editor so that I can assist you in adding custom code for better understanding.
I am not sure about what you meant by link to code editor.
However, this is my website link, https://findla.co/
This website contain the "As Seen On" that I mentioned. https://go.tryxwrap.com/index-00169
This is an accepted solution.
Hello @Pyimk,
Here's a step-by-step guide to add a new section in Shopify:
Navigate to the Theme Library:
Access the Code Editor:
Proceed to Add a New Section:
Assign a Name:
Paste the Code:
Save Changes:
{% style %}
.icons-section .heading {
text-align: center;
}
.icons-section .heading h4 {
text-transform: capitalize;
font-weight: bold;
}
.icons-section .row {
display: flex;
column-gap: 30px;
justify-content: center;
}
.icons-section .row .col img {
width: 100px;
height: auto;
object-fit: contain;
box-shadow: 3px 3px 6px 7px whitesmoke;
border-radius: 50%;
}
{% endstyle %}
<div class="icons-section">
<div class="container">
<div class="inner-icons">
<div class="heading">
{% if section.settings.heading != '' %}
<h4>{{ section.settings.heading }}</h4>
{% endif %}
</div>
<div class="row">
{% for block in section.blocks %}
<div class="col">
{% if block.settings.icons != '' %}
<img src="{{ block.settings.icons | img_url: 'master' }}" alt="{{ block.settings.icons.alt }}">
{% endif %}
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% schema %}
{
"name": "Icons",
"tag": "section",
"class": "icons_section",
"blocks": [
{
"name": "Icons",
"type": "Icons",
"settings": [
{
"type": "image_picker",
"id": "icons",
"label": "Icons"
}
]
}
],
"settings": [
{
"type": "text",
"id": "heading",
"label": "Heading"
}
],
"presets": [
{
"name": "Icons",
"settings": {}
}
]
}
{% endschema %}
Please take a look at the screenshots.
Feel free to reach out if you have any additional questions. If this solution is helpful, please consider liking and accepting it.
S.P
Thanks, It works and it helps me a lot.
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025