Shopify themes, liquid, logos, and UX
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 🙂
Thanks a lot @MarinaPetrovic it solved the problem.
Starting a B2B store is a big undertaking that requires careful planning and execution. W...
By JasonH Sep 23, 2024By investing 30 minutes of your time, you can unlock the potential for increased sales,...
By Jacqui Sep 11, 2024We appreciate the diverse ways you participate in and engage with the Shopify Communi...
By JasonH Sep 9, 2024