Can anyone help me? How can I delete this item?
my website: https://umhw5c-2w.myshopify.com/
Absolutely yes @pimpaoclothing ,
I one see that as an issue before but now i can now solve it myself
Should i teach you how i did mine?
Hi @pimpaoclothing .
Go to “Online Store”
Three dots → Edit Code
Find the base.css file
Add the following code at the bottom of the file
Save and refresh the target store page
section.tpt-section > div:last-of-type {
display: none;
}
If done correctly, the result should be like this:
I hope this helps!
If you don’t want to edit the theme code directly, you can use a code injection app like the one in my signature.
Hello @pimpaoclothing
section.tpt-section > div:last-of-type {
display: none;
}
How can i do the same but in mobile? (it appears in mobile)
This happens because you pasted the rule into the @media clause. It will disappear if you paste the rule at the bottom of the file.