Faq Page Padding Issue

Solved

Faq Page Padding Issue

TuneToyz
Explorer
52 0 13

Hello, when I open https://tunetoyz.com/apps/help-center there seems to be a padding issue. The orders part is covered by the header. Is there a way to move it down so that its not covered? Also this is the only page that is experiencing a problem and it looks fine on mobile just on PC

Screen Shot 2024-07-29 at 1.28.38 PM.png

 
 
Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
7878 1903 2333

This is an accepted solution.

Hi @TuneToyz 

Did you add the app anouncement bar recently? Before you add you already have this problem? If yes, you need to contact the app provider so they can fix it. In meanwhile you can check this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes"
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

{% unless template.name == 'index' %}
<style>
main#MainContent {
    margin-top: 10vh;
}
</style>
{% endunless %}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1722291812397.png

     

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.

View solution in original post

Replies 4 (4)

EBOOST
Shopify Partner
1190 310 349

Hi @TuneToyz,

May I suggest to update code these steps:

1. Go to Store Online-> theme -> edit code

EBOOST_1-1672356985580.png
2. Assets/base.css
3. Add code below to end of file

@media(min-width: 750px){
  body:not(.home-page) .section-header.shopify-section-header-sticky .header-wrapper{
    position: sticky!important;
  }
}

 

 

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips
TuneToyz
Explorer
52 0 13

hey this doesn't work the header is still covering the order part

EBOOST
Shopify Partner
1190 310 349

Hi,

I don't see code. However, I saw something error on base.css file. So you can add code below to end of file Layout/theme.liquid and before </body> tag ( refer screenshot)

<style>
     @media(min-width: 750px){
        body:not(.home-page) .section-header.shopify-section-header-sticky .header-wrapper{
          position: sticky!important;
        }
      }
    </style>

EBOOST_0-1722291408300.png

 

 

- Hope can help. If you find my reply helpful, please hit Like and Mark as Solution
- Need a Shopify developer? Contact email: eboost10@gmail.com
- Visit our site: https://www.eboosttech.net to view and download shopify themes and magento2 extensions free
- ❤❤DONATE ❤❤Coffee tips

Made4uo-Ribe
Shopify Partner
7878 1903 2333

This is an accepted solution.

Hi @TuneToyz 

Did you add the app anouncement bar recently? Before you add you already have this problem? If yes, you need to contact the app provider so they can fix it. In meanwhile you can check this one. 

  1. From your Shopify admin dashboard, click on "Online Store" and then "Themes"
  2. Find the theme that you want to edit and click on "Actions" and then "Edit code".
  3. In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 

 

{% unless template.name == 'index' %}
<style>
main#MainContent {
    margin-top: 10vh;
}
</style>
{% endunless %}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1722291812397.png

     

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue Likes and Accept as Solution is highly appreciated. Coffee tips fuels my dedication.
Get EXPERIENCED Shopify developers at affordable rates—visit Made4Uo.com for quick quote!
Do not lost your Shopify store! Get FREE trial with ✔️ Rewind Backup: Automatic, reliable, stress-free.
Need THEME UPDATES but has custom codes? No worries, contact us for affordable price.