Why is there a white block on my homepage after deleting a heading?

Why is there a white block on my homepage after deleting a heading?

TDK1
Visitor
1 0 0

Hi, on my website, Whiskerwonders.ca I deleted the heading on the homepage and it looks nice from phone perspective but from the PC perspective there is a massive white block in the middle of the page. Can someone please help?

 

Thanks

Reply 1 (1)

Spac-es
Shopify Partner
390 112 143

Add the following code in your theme.liquid:

 

 

<script>
  document.addEventListener("DOMContentLoaded", function() {
    var elements = document.querySelectorAll('.slideshow__text.banner__box.content-container.content-container--full-width-mobile.color-background-1.gradient.slideshow__text--left.slideshow__text-mobile--left');

    elements.forEach(function(element) {
      element.style.display = 'none';
    });
  });
</script>

 

 

I hope it helped you!

Any donation is welcome! https://www.buymeacoffee.com/spacescoffee Thanks in advance!