How to fill this part of my page in with color?

Topic summary

A user is experiencing an unwanted white section in their page background and seeks help removing it.

Problem identified:

  • The white space is caused by a top margin applied to a specific section

Solution provided:

  • Add CSS code to the theme.liquid file to set the section’s top margin to 0
  • The code targets the specific section ID and removes the margin
  • Insert the snippet at the bottom of theme.liquid, just before the closing body tag

Alternative approach:

  • Use the Easy Edits app to make the change without touching code
  • The app allows clicking on the section and setting top margin to 0
  • Users can make edits and delete the app afterward without paying

Status: Solution provided with both manual code and app-based options.

Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

I attached a image showing my background has a white section I want removed does anybody know how to solve this issue? I also attached an image of the code I input to get this color.

Any help would be greatly appreciated!

My theme is impusle

my url is naturalvitaminsusa.com

Hi, nice page!

The problem is your section has a margin applied to the top. Here’s a code snippet that’ll work and remove that:

{% style %}
div#shopify-section-99432a34-88c6-415b-b28a-edcb47b6500a {
    margin-top: 0;
}
{% endstyle %}

Insert that into your theme.liquid file (online store > themes > click ‘…’ on the theme you want, then ‘edit code’). Insert it at the bottom of the file, right before the ‘’ tag.

Alternatively, you can also use the app Easy Edits to make the edit yourself without touching any code, just click on the section and set the top margin to 0. You can the edit and delete the app without paying for anything, and keep the edits.

Fair disclaimer, Easy Edits is an app I’ve worked on. If you need any help inserting the code or using the app, just let me know!