Dawn theme - compress landing page so its theres no scroll bar

Solved

Dawn theme - compress landing page so its theres no scroll bar

Ascension1111
Tourist
9 0 0

https://emxlqmmkxkokrjsz-71277969692.shopifypreview.com

im trying to compress my home/landing page so theres no scroll bar and it all loads on one page. i assume that means i need to reduce the size of image banner section, however i want to avoid rescaling or changing the image and text placement in relation to the video background. so somehow shoring up the bottom of the page.

Accepted Solution (1)

Simonsron
Shopify Partner
699 87 123

This is an accepted solution.

{% if template.name == "index" %}
<style>
body{
  width:100vw !important;
  height:100vh !important;
  overflow:hidden;
}
</style>
{% endif %}

Place this code in front of the </head> tag in theme.liquid

banned

View solution in original post

Replies 2 (2)

Simonsron
Shopify Partner
699 87 123

This is an accepted solution.

{% if template.name == "index" %}
<style>
body{
  width:100vw !important;
  height:100vh !important;
  overflow:hidden;
}
</style>
{% endif %}

Place this code in front of the </head> tag in theme.liquid

banned
Ascension1111
Tourist
9 0 0

that worked beautifully, thank you!