I am experiencing an issue with my website where the repeating background on a wrapper that acts as the background for the nav-bar is not extending all the way down the page as intended. I tried setting the min-height of the wrapper to 100%, but for some reason, the background disappears. Can anyone provide insight into why this might be happening?
Feel free to visit the site to see the issue in action:
Below is the relevant CSS code snippet:
.wrapper {
width: 940px;
min-height: 100%;
margin: 0 auto;
text-align: left;
background-image: url({{'body-bg.png' | asset_url}});
background-repeat: repeat-y;
}