Interested in showing a little holiday spirit with a snowy theme for your Showit site? You can do so easily by following the steps below!
⚠️ We cannot guarantee that any added pieces of code will work in every case inside of Showit.
Add a Snow Theme
In the left side Site Panel under the Page tab, select the name of the page that you would like to add the snow theme to.
Once you have your page name selected, you should see a tab for Advanced Settings in the right side Properties Panel.
Select this tab, and click on the box that says Custom Head HTML.
Snow Theme for Desktop & Mobile
Paste the following code in your Custom Head HTML to get the snow theme for your Desktop and Mobile site layouts:
<!-- 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 -->
Save & Publish
After you have pasted this code into your custom code box, make sure to click Save and publish your design! Happy Holidays!