Need help removing this section from my product page.

Topic summary

Goal: remove the white info strip on product pages showing shipping time, 30-day warranty, and receive time.

Access/setup: Store link was shared and initially password-protected; a password was provided so others could view the page. Images illustrated the target section and the expected result after changes.

Proposed solutions:

  • Code edit via theme files: Add CSS to hide specific elements:
    • .bg-info-ship { display: none; }
    • p.text-garantia { display: none; }
    This was suggested to be placed at the end of Theme.css and came with a result screenshot.
  • Alternative via Shopify Customizer (no file editing needed): Go to Online Store > Themes > Customize > Theme settings > Custom CSS and add:
    • .main-font-title { display: none !important; }

Progress/issue: The requester couldn’t find Theme.css, prompting use of the Custom CSS approach.

Outcome: Applying the Custom CSS change resolved the issue for the requester, and another participant confirmed it worked for them as well.

Status: Resolved with a CSS-based hide; no further action requested.

Summarized with AI on December 21. AI used: gpt-5.

Thought an AI made page would was a good idea… I need help removing the white area with the shipping time , 30 Warranty, and receive time part. Thanks in advance. I’m almost done with this section.

Site: https://infurtuation.com/

Hi @UltimerciaB

Your store has password protected

Sorry, here the pw: dishau

Hello @UltimerciaB
Go to online store ---------> themes --------------> actions ------> edit code------->Theme.css
add this code at the end of the file.

.bg-info-ship {
display: none;
}
p.text-garantia {
display: none;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

1 Like

Having a hard time finding the Theme.css. I see other Theme files but not that one, unfortunately.

Please go to your Online Store > Themes > Customize > Theme settings > open Custom CSS, add this code, and save the change

.main-font-title { display: none !important; }
1 Like

Thanks!

This fixed my issue as well! Thank you so much!

1 Like

Very welcome!