Shopify themes, liquid, logos, and UX
Hi there,
I am using the 'combine theme' on shopify plus.
I am wishing to make the image full width on the info tabs section (so not have the gap on the left side of the section in the screenshot). It is an SVG image how do I go about changing this?
Thank you,
Milla
Solved! Go to the solution
This is an accepted solution.
I guess it's a section like this one: https://moodiostudio.com/#shopify-section-template--15705531908301__166266065378da2b75
You may try CSS code like this:
@media (min-width:768px) {
.info-tabs {
margin-left: calc(50% - 50vw);
}
.info-tabs_panels {
width: 50vw;
}
}
However:
The code above would apply to all sections of this type, so may require better targeting;
Should work when images are on the left (because margin-left);
Also wanted to warn that there are people with large and ultra-wide monitors where full-blown things like this may not look pretty, but it's hard to suggest anything without seeing the actual image:
Would you mind to share the preview? Thanks!
Im sorry, im still not seeing the section that you like to edit. Is this a product page? or a Image with text section?
Hi @Made4uo-Ribe - apologies sent the wrong link
https://maskco.com/?_ab=0&_fd=0&_sc=1
This is an accepted solution.
I guess it's a section like this one: https://moodiostudio.com/#shopify-section-template--15705531908301__166266065378da2b75
You may try CSS code like this:
@media (min-width:768px) {
.info-tabs {
margin-left: calc(50% - 50vw);
}
.info-tabs_panels {
width: 50vw;
}
}
However:
The code above would apply to all sections of this type, so may require better targeting;
Should work when images are on the left (because margin-left);
Also wanted to warn that there are people with large and ultra-wide monitors where full-blown things like this may not look pretty, but it's hard to suggest anything without seeing the actual image:
Hi @tim thanks for the above!
I was wondering how I make this full width also on mobile?
For this we need to add another @media rule to the code above so that it looks like this:
@media (min-width:768px) {
.info-tabs {
margin-left: calc(50% - 50vw);
}
.info-tabs_panels {
width: 50vw;
}
}
@media (max-width:767px) {
.info-tabs_panels {
width: 100vw;
margin: 0 calc(50% - 50vw);
}
}
Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025