Inside the Showit builder, select the page name in the top left corner. If a canvas is selected it will only show canvas settings and not the page settings. To avoid this, click on the page name.
In the right toolbar, you should see an a tab for "Advanced Settings". Select it and it will reveal a box for adding Custom Head HTML.
DESKTOP + MOBILE SNOW THEME- paste the following code in the pop-up box:
<!-- Showit Snow Code -->
<script type="text/javascript">
(function () {
loadSnow();
function loadSnow() {
var script = document.createElement('script');
script.defer = true;
script.src = 'https://static.showit.co/file/IcLiP84BQNKCyeS7FmT8Dg/38940/snowstorm.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = initSnow;
}
function initSnow() {
snowStorm.excludeMobile = false;
}
})();
</script>
<!-- End Showit Snow Code -->
DESKTOP ONLY SNOW THEME- paste the following code:
<!-- Showit Snow Code -->
<script type="text/javascript">
(function () {
loadSnow();
function loadSnow() {
var script = document.createElement('script');
script.defer = true;
script.src = 'https://static.showit.co/file/IcLiP84BQNKCyeS7FmT8Dg/38940/snowstorm.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(script);
script.onload = initSnow;
}
function initSnow() {
//snowStorm.excludeMobile = false;
}
})();
</script>
<!-- End Showit Snow Code -->
Then just click "Save" when finished:
Be sure to publish the changes otherwise visitors won't see this awesome feature!!
**If you have additional code such as FB Pixel or other HTML Head code already, just indent below the existing code and past it like the example below.
<!-- Facebook Pixel Code -->
.....
<!-- End Facebook Pixel Code --></div></script>
<!-- Showit Snow Code -->
.....
<!-- End Showit Snow Code -->