Contact Us page is cutting off

Topic summary

A user encountered a display issue where their Contact Us page was being cut off, likely due to footer positioning problems in a newly purchased Shopify theme.

Solution Provided:

  • Navigate to Edit code in the theme editor
  • Locate the theme.min.css file
  • Add the following CSS at the end:
.footer-wrapper.fix-to-bottom {
  position: relative !important;
}

Outcome:
The CSS fix successfully resolved the issue by adjusting the footer’s positioning from fixed to relative. Multiple users confirmed the solution worked, with the original poster expressing gratitude and another community member reporting it solved their similar problem. The issue is now resolved.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Hello Shopify Gurus out there. I need help. I bought a new theme and it looks like my “Contact Us” page is not showing up right. I’m thinking the issue might be related to the formatting on the store’s end. Can someone assist me?

Hi @BGray_1

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.min.css and add this code at the end of the file

.footer-wrapper.fix-to-bottom {
position: relative !important;
}

Result

Best,

Liz

1 Like

Hi @BGray_1

I just checked for you

It was fixed right?

Hi @BGray_1 ,

I have checked, and it seems that the issue you encountered has been resolved?

You are a rockstar! This was driving me nuts. Thank you so much.

It helped me, Thank you so much for the solution.