shopify custom logo section with full dynamic

cmtengineerrasel

New member
XNullUser
Joined
Sep 29, 2023
Messages
2
Reaction score
0
Points
1
Location
bangladesh
NullCash
29
step1: go to theme code editior >> section >> brands-logo.liquid . then paste this code

<div class="page-width">
<h2 class="title inline-richtext center h2">{{ section.settings.heading }}</h2>
<div class="brandslogo__section">
{% for block in section.blocks %}
<div class="brandslogo__item">
<img src="{{ block.settings.image | img_url: '160x' }}">
</div>
{% endfor %}
</div>
</div>

{% schema %}
{
"name": "Brands Logo",
"tag": "section",
"class": "section section_brands_logo",
"settings": [
{
"type": "text",
"id": "heading",
"label": "Heading",
"default": "alcuni nostri marchi"
}
],
"max_blocks": 10,
"blocks": [
{
"name": "Slide",
"type": "slide",
"settings": [
{
"type": "image_picker",
"id": "image",
"label": "Image",
"info": "image size width 160px recommended"
}
]
}
],
"presets": [
{
"name": "Brands Logo",
"blocks": [
{
"type": "slide"
},
{
"type": "slide"
},
{
"type": "slide"
},
{
"type": "slide"
}, {
"type": "slide"
}, {
"type": "slide"
}

]
}
]
}
{% endschema %}

<style>
.section_brands_logo {
margin: 50px 0;
}
.brandslogo__section {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: center;
justify-content: center;
}
.brandslogo__item {
flex-basis: calc(20% - 20px);
}
.brandslogo__item img {
min-width: 160px;
}

@Media only screen and (max-width: 768px) {
.brandslogo__item {
flex-basis: calc(33.33% - 20px);
}
}
@Media only screen and (max-width: 576px) {
.brandslogo__item {
flex-basis: calc(50% - 20px);
}
.section_brands_logo {
margin: 30px 0;
}
}
</style>
 

Attachments

  • brands-logo.png
    brands-logo.png
    86.4 KB · Views: 9

alfacent9

New member
XNullUser
Joined
Oct 24, 2023
Messages
15
Reaction score
0
Points
1
Age
55
Location
rome
NullCash
7
This is exactly what i've looking for! thank you dude
 

BioStars

Member
XNullUser
Joined
Jan 4, 2022
Messages
578
Reaction score
1
Points
18
NullCash
4
very nice sharing thank you we are waiting for the next
 

erertertet

Member
XNullUser
Joined
Jan 19, 2024
Messages
64
Reaction score
1
Points
8
Location
italia
NullCash
0
Thanks for sharing the great sharing Thanks for sharing the great sharing
 

xkingxmoex

Member
XNullUser
Joined
Jul 22, 2021
Messages
357
Reaction score
0
Points
16
NullCash
2
Thank you for sharing! I didn't know about this until today.
 
Top