Does anyone know how to fix this, these elements are overlapping,
Not a problem when i have longer description on the page but that is not always the case, should be some padding under the “tillbehör” section
https://did4zqnh7ipsok0q-24276923.shopifypreview.com
If anyone has a fix for this i will be more then happy!
Moeed
August 29, 2024, 7:16am
2
Hey @emilbrandon
Can you send a product link that has a longer description? I’m unable to locate a product like that on your store.
Best Regards,
Moeed
Hello @emilbrandon
Go to online store ----> themes ----> actions ----> edit code---->theme.css —> line number 997
search this code
@media screen and (min-width: 641px) {
.container {
padding: 0 var(--desktop-container-gutter);
}
}
and replace with this code.
@media screen and (min-width: 641px) {
.container {
padding: 1 var(--desktop-container-gutter);
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
Hello Moeed, thanks for your answer,
Yes here is a link with longer, note this is in a draf theme, and we experiance this when we change the Tabs, and the descriptoin become shorter regarding on the content,
https://did4zqnh7ipsok0q-24276923.shopifypreview.com
Hello @emilbrandon
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
@media screen and (min-width: 641px) {
.section {
margin: 31% 0 !important;
}
}
Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.
This did kinda work, but added alot of padding or margin to all the element belove the problem is just the overlapping not the distance
Go to online store ----> themes ----> actions ----> edit code---->theme.css —> line number 997
search this code
@media screen and (min-width: 641px) {
.section__header {
margin-bottom: 15px;
}
}
and replace with this code.
@media screen and (min-width: 641px) {
.section__header {
margin-bottom: 70px !important;
}
}
result
Thanks
Hello again and thanks for the answer, i do not fine this line in the code
did you have a solution for this?