Shopify themes, liquid, logos, and UX
To continue receiving payouts, you need to secure your account by turning on two-step authentication. If two-step authentication is not turned on your payouts will be paused. Learn more
Hello guys, I just got started about 2 weeks learning shopify, and i have a question a bout sections and blocks:
Basicly I wanted to crate a simple section where you can further describe a product with images and descriptions
For the schema I did a block with this "settings":[
{
"type": "textarea",
"id": "name",
"label": "Description"
},
{
"type": "image_picker",
"id": "image",
"label": "Photo"
},
{
"type" : "number",
"id" : "position",
"label" : "Picture second"
}]}] My questions is about the last settings I want to use it to change the position of the image in my block it goes like this
{% for block in section.blocks %}
{%- style -%}
.cardImg {
order : {{ block.settings.position }} ;
}
{%- endstyle -%}
{% endfor %}
cardImg refering to : <div class = "cardImg" >
<img class="img" src="{{ block.settings.image | img_url }}"></img>
</div>
The problems is I don't know how to select just the image for a block, when changing the order of the div it changes it for all the blocks.
Solved! Go to the solution
This is an accepted solution.
Hi @Gokurinko , you need to have a specific identifier for each block. Like this:
<div class = "cardImg{{block.id}}" >
<img class="img" src="{{ block.settings.image | img_url }}"></img>
</div>
And change style like this:
.cardImg{{block.id}} {
order : {{ block.settings.position }} ;
}
Hope this helps 🙂
This is an accepted solution.
Hi @Gokurinko , you need to have a specific identifier for each block. Like this:
<div class = "cardImg{{block.id}}" >
<img class="img" src="{{ block.settings.image | img_url }}"></img>
</div>
And change style like this:
.cardImg{{block.id}} {
order : {{ block.settings.position }} ;
}
Hope this helps 🙂
User | RANK |
---|---|
116 | |
90 | |
71 | |
68 | |
45 |
Learn these 5 things I had to learn the hard way with starting and running my own business
By Kitana Jan 27, 2023Would you love to unleash the unbridled power of the Google Shopping Channel into your sho...
By Gabe Jan 6, 2023How can you turn a hobby into a career? That’s what Emmanuel did while working as a wa...
By Skye Dec 30, 2022