Delete Element

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 .

  1. Go to “Online Store”

  2. Three dots → Edit Code

  3. Find the base.css file

  4. Add the following code at the bottom of the file

  5. 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

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
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.