Product Pages Blank Space Issue (Dawn 9.0 Theme)

Solved
chimneycricket
Visitor
2 0 2

Our online store (https://www.chimneycricket.commade with the Dawn 9.0 theme has been having some issues with the Product Pages (ex. https://chimneycricket.com/products/summerset-sizzler-26-built-in-grill) showing a large block of white space under the footer. Have tried reaching out to support and tried to change the code around but no luck. Any input would be very much appreciated! Thank you in advance.

Accepted Solution (1)
Made4uo-Ribe
Shopify Partner
4151 950 1158

This is an accepted solution.

Hi @chimneycricket 

Try this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

body > svg {
    display: none !important;
}

 

  • And Save. 
  • Result:
    Made4uoRibe_0-1696354821404.png
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


View solution in original post

Replies 3 (3)
makkaomakka
Shopify Partner
887 174 183

Hi @chimneycricket ,

 

I reviewed the site and found that there are bunch of SVGs thats taking up the space.

I noticed some issues on your theme which is not possible to explain via comments. Some of the issue is shown in the below screenshots[i.e Issues with DOM elements].

makkaomakka_3-1696353600697.png

 

Untill you debug this completly, you can add bellow CSS to hide those white spaces

<style>
svg[height="100%"] {
display: none!important;
}
</style>

 

Steps to add CSS:

Step 1: Go to Online Store > Themes > Active theme > Edit

makkaomakka_0-1696353476980.png

 

Step 2: Search for "theme.liquid"

makkaomakka_1-1696353476982.png

 

Step 3: Add the CSS above "</head>"

makkaomakka_2-1696353476985.png

 

If you require further help to optimize your store, please don't hesitate to reach out. If you find this information useful, a Like would be greatly appreciated. And if this solves the problem, please Mark it as Solution!

 

Best Regards,
Mangit

❤️❤️

Buy me a coffee


For quick response - Message Me


Increase Xmas sales with BOGO+ Easy Free Gift Upsell. Get 30% OFF for 3 months with code "BFWIZZ30".

Made4uo-Ribe
Shopify Partner
4151 950 1158

This is an accepted solution.

Hi @chimneycricket 

Try this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes".
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

body > svg {
    display: none !important;
}

 

  • And Save. 
  • Result:
    Made4uoRibe_0-1696354821404.png
Please don't forget to 

Like

 and 

Mark Solution 

to the post that helped you. Thanks!
Sip, savor, and support – your

Coffee Tip

 helps us keep coding magic.❤️❤️❤️
Need a knowledgeable developer? Come and visit us at

Made4uo.com


chimneycricket
Visitor
2 0 2

Thank you SO much! This worked and saved us so much trouble. We really appreciate your time.