



<!doctype html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>	   <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>	   <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>	   <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
	<meta http-equiv="X-Frame-Options" content="SAMEORIGIN"><meta http-equiv="X-Content-Type-Options" content="nosniff"><meta http-equiv="Referrer-Policy" content="strict-origin-when-cross-origin">

	<link rel="preconnect" href="https://fonts.gstatic.com">
	<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap" rel="stylesheet">

	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
	<link rel="alternate" type="application/rss+xml" title="RSS" href="https://www.easysigns.com.au/news/feed" />
	<title>The Easy Signs Signage &amp; Wide Format Printing - Easy Signs</title>
<meta name="description" content="Read our blog posts to keep up to date with our product announcements and wide format printing industry news." />
<meta name="keywords" content="" />
<meta name="robots" content="index,follow,archive" />

<meta name="geo.position" content="-33.989178,150.871669" />
<meta name="geo.placename" content="Ingleburn" />
<meta name="geo.region" content="AU-NSW" />



	<meta name="viewport" content="width=device-width, initial-scale=1.0" />

	<link rel="apple-touch-icon" sizes="57x57" href="/themes/user/site_themes/default/icons/apple-touch-icon-57x57.png" />
	<link rel="apple-touch-icon" sizes="114x114" href="/themes/user/site_themes/default/icons/apple-touch-icon-114x114.png" />
	<link rel="apple-touch-icon" sizes="72x72" href="/themes/user/site_themes/default/icons/apple-touch-icon-72x72.png" />
	<link rel="apple-touch-icon" sizes="144x144" href="/themes/user/site_themes/default/icons/apple-touch-icon-144x144.png" />
	<link rel="apple-touch-icon" sizes="60x60" href="/themes/user/site_themes/default/icons/apple-touch-icon-60x60.png" />
	<link rel="apple-touch-icon" sizes="120x120" href="/themes/user/site_themes/default/icons/apple-touch-icon-120x120.png" />
	<link rel="apple-touch-icon" sizes="76x76" href="/themes/user/site_themes/default/icons/apple-touch-icon-76x76.png" />
	<link rel="apple-touch-icon" sizes="152x152" href="/themes/user/site_themes/default/icons/apple-touch-icon-152x152.png" />
	<meta name="apple-mobile-web-app-title" content="Easy Signs" />
	<link rel="icon" type="image/png" href="/themes/user/site_themes/default/icons/favicon-196x196.png" sizes="196x196" />
	<link rel="icon" type="image/png" href="/themes/user/site_themes/default/icons/favicon-160x160.png" sizes="160x160" />
	<link rel="icon" type="image/png" href="/themes/user/site_themes/default/icons/favicon-96x96.png" sizes="96x96" />
	<link rel="icon" type="image/png" href="/themes/user/site_themes/default/icons/favicon-16x16.png" sizes="16x16" />
	<link rel="icon" type="image/png" href="/themes/user/site_themes/default/icons/favicon-32x32.png" sizes="32x32" />
	<meta name="msapplication-TileColor" content="#669f19" />
	<meta name="msapplication-TileImage" content="/themes/user/site_themes/default/icons/mstile-144x144.png" />
	<meta name="application-name" content="Easy Signs" />
	<meta name="google-site-verification" content="tcqVxLRB3uiBi2QBt55_TIQ4HMpaZlr8monNbeyU-Xk" />

	<!-- Localisation -->
	<link rel="canonical" href="https://www.easysigns.com.au/news" />

	
	<!-- inner pages -->
		
			<!-- self-reference -->
			<link rel="alternate" href="https://www.easysigns.com.au/news" hreflang="en-au" />

			
				<!-- default alternate hreflang -->
				<link rel="alternate" href="https://www.easysigns.com/news" hreflang="en-us" />
				<link rel="alternate" href="https://www.easysigns.com.au/news" hreflang="en" />
				<link rel="alternate" href="https://www.easysigns.com.au/news" hreflang="x-default" />
			
			
		
		<!-- end inner pages -->
	
	

	<script type="text/javascript">
		var g_is_sales_user = "0";
	</script>   

	<!-- Load bluebird Promise polyfill in IE only -->
	<script type="text/javascript">var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) document.write('<script src=https://cdnjs.cloudflare.com/ajax/libs/bluebird/3.3.5/bluebird.min.js><\/scr'+'ipt>');</script>
	
	<!-- Mail Chimp Header -->
	<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/c30fcbce8232fcb6d4f14e935/e4af2f86e2625ea26b468db1f.js");</script>
	
	<script type="text/javascript">
		// https://tc39.github.io/ecma262/#sec-array.prototype.findindex
		if (!Array.prototype.findIndex) {
			Object.defineProperty(Array.prototype, 'findIndex', {
			value: function(predicate) {
			// 1. Let O be ? ToObject(this value).
				if (this == null) {
				throw new TypeError('"this" is null or not defined');
				}
		
				var o = Object(this);
		
				// 2. Let len be ? ToLength(? Get(O, "length")).
				var len = o.length >>> 0;
		
				// 3. If IsCallable(predicate) is false, throw a TypeError exception.
				if (typeof predicate !== 'function') {
				throw new TypeError('predicate must be a function');
				}
		
				// 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
				var thisArg = arguments[1];
		
				// 5. Let k be 0.
				var k = 0;
		
				// 6. Repeat, while k < len
				while (k < len) {
				// a. Let Pk be ! ToString(k).
				// b. Let kValue be ? Get(O, Pk).
				// c. Let testResult be ToBoolean(? Call(predicate, T, Â« kValue, k, O Â»)).
				// d. If testResult is true, return k.
				var kValue = o[k];
				if (predicate.call(thisArg, kValue, k, o)) {
					return k;
				}
				// e. Increase k by 1.
				k++;
				}
		
				// 7. Return -1.
				return -1;
			},
			configurable: true,
			writable: true
			});
		}
	</script>

	<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/modernizr/modernizr-2.8.3.min.js"></script>	

	<!-- For pages being slowly migrated to the updated architecture -->		
	
		<link href="/themes/user/easysigns_commerce/dist/app-native.3cbb32b29b8fb458d1c4.css" rel="stylesheet"><link href="/themes/user/easysigns_commerce/dist/font-native.87f57d18b3df9f148222.css" rel="stylesheet">
	

	

	

	

	

	

	<!-- Load custom fonts for router cut letters -->
	
	<link rel="stylesheet" href="/themes/user/easysigns_commerce/dist/print-native.f71b86ba4a18d7ee2c9a.css" media="print">

	<script>
    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

    ga('create', 'UA-311810-3', {'clientId': '6a279dbbeba4a'});

    /* DataFeedWatch tracker */
    __dfwTracker = { dimension: 1 };
    !function(e){function t(){function e(){return Math.floor(65536*(1+Math.random())).toString(16).substring(1)}return"dfwt"+e()+e()+e()+e()+e()+e()}function n(e,t){function n(e){0===e.indexOf('"')&&(e=e.slice(1,-1).replace(/\\"/g,'"').replace(/\\\\/g,"\\"));try{return e.replace(/\+/g," ")}catch(t){}return""}if(r(t)){var o=new Date;return o.setTime(o.getTime()+63072e6),i.cookie=e+"="+t+("; expires="+o.toUTCString())+"; path=/"}for(var c,a,f,u=e?void 0:{},d=i.cookie?i.cookie.split("; "):[],s=0,l=d.length;l>s;s++){if(c=d[s].split("="),a=c.shift(),f=c.join("="),e&&e===a){u=n(f);break}!e&&r(f=n(f))&&(u[a]=f)}return u}function r(e){return null===e?!1:void 0!==e}var i=e.document,o="_dfwt",c=/dfw_tracker=([0-9a-zA-Z\-\_]+)/.exec(location.href),a=e.__dfwTracker||{};if(a.dimension=a.dimension||1,null!==c&&r(c[1])&&(c=c[1]),"string"==typeof c){var f=n(o);r(f)||(f=t(),n(o,f));try{ga("set","dimension"+a.dimension,f+"-"+c)}catch(u){}}}(window);
    /* DataFeedWatch tracker end */

    ga('send', 'pageview');
</script>

<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TCV8GWB');</script>
<!-- End Google Tag Manager -->
	<script
  async type="text/javascript"
  src="https://static.klaviyo.com/onsite/js/QXwUPy/klaviyo.js"
></script>

    
        
    

    <script>
		var easyflow_url = "https://easyflow.easysigns.com.au";
		var account_manager_url = "/?ACT=113";
		var download_action_id="72";
		var account_manager_act_id = "113";
		var quotes_act_id = "116";
		var designs_act_id = "117";
		var deposit_photos_api_url = "/?ACT=120";
		var language_api_url = "/?ACT=123";
		var easyflow_api_url = "/?ACT=124";
		var suburbs_api_act_id = "128";
		var get_cart_product_api_act_id = "129";
		var update_cart_product_api_act_id = "130";
		var configuration_api_act_id = "121";
		var get_product_form_configurations_id = "133";
		var reorder_form_submit_act_id = "136";
		var price_match_api_act_id = "144";
		var csrf_token = "8d69ed3e5931d02348774d45f2645b2cde3776c2";
		var loggedIn = "";
		var routerCutVersion = "v1";
        var langLineData = {
            company_name: "Easy Signs Pty Ltd",
            address1: "144 Hartley Road",
            address2: "Smeaton Grange NSW 2567",
            country: "Australia",
            contact_number: "1300 972 077",
            sale_email: "sales@easysigns.com.au",
            domain: "www.easysigns.com.au",
            url: "https://www.easysigns.com.au",
            socmed_fb: "myeasysigns",
            socmed_twt: "easysigns",
            socmed_in: "easysigns",
            socmed_ig: "easysigns",
        }

		if(window.location.pathname.search(/members/) != -1 && loggedIn != "1" 
			&& window.location.pathname.search(/members\/invite/) != 1 
			&& window.location.pathname.search(/members\/reset-password/) != 1
			&& window.location.pathname.search(/members\/login/) != 1
			&& window.location.pathname.search(/members\/register/) != 1
		) {
			window.location.href = "/";
		}
	</script>

	<script>
		// if ("loading" in HTMLImageElement.prototype) {
		// 	//support for native lazyload
		// } else {
		var head = document.getElementsByTagName('head')[0];
		var script = document.createElement('script');
		script.type = 'text/javascript';
		script.src = "https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/lazysizes.min.js";
		head.appendChild(script);
		// }
	</script>

	<!-- schema.org/organization -->
	<script type="application/ld+json">
	{"@context":"https://schema.org",
		"@type":"Organization",
		"name":"Easy Signs",
		"description":"Easy Signs are a leading Australian Signage Manufacturer. Best Prices, 24 Hour Production, Instant Online Pricing & Ordering, Australia Wide Delivery.",
		"address":"144 Hartley Road, Smeaton Grange NSW 2567, Australia",
		"telephone":"+61 1300 972 077",
		"url":"https://www.easysigns.com.au/",
		"logo":"https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/v2/general/easy-signs-logo.png",
		"image":"https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/v2/general/easy-signs-logo.png",
		"sameAs":["https://www.facebook.com/myeasysigns/","https://www.x.com/myeasysigns/","https://www.instagram.com/easysigns/","https://www.linkedin.com/company/easysigns/"]}
    </script>

	
	
	<style>
		template {
			display: none;
		}
	</style>
	<script>
		(function(){return (function templatePolyfill(){"use strict";if("content"in document.createElement("template")){return false;}var templates=document.getElementsByTagName("template");var plateLen=templates.length;for(var x=0;x<plateLen;++x){var template=templates[x];var content=template.childNodes;var fragment=document.createDocumentFragment();while(content[0]){fragment.appendChild(content[0]);}template.content=fragment;}}());}());
	</script>

	
	<!-- Facebook Pixel Code -->
    <meta name="facebook-domain-verification" content="owii35es5m61atc9qipgkcti2718sm">
	<script>
		!function(f,b,e,v,n,t,s)
		{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
				n.callMethod.apply(n,arguments):n.queue.push(arguments)};
			if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
			n.queue=[];t=b.createElement(e);t.async=!0;
			t.src=v;s=b.getElementsByTagName(e)[0];
			s.parentNode.insertBefore(t,s)}(window, document,'script',
				'https://connect.facebook.net/en_US/fbevents.js');

		fbq('init', '726061391345533');
		fbq('track', 'PageView');
	</script>

	<!-- End Facebook Pixel Code -->
	

	<!-- Global site tag (gtag.js) - Google Ads: 1063836710 -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-1063836710"></script>

    <script>
	   window.dataLayer = window.dataLayer || [];
	   function gtag(){dataLayer.push(arguments);}
	           gtag('js', new Date());
	           gtag('config', 'AW-1063836710', {'allow_enhanced_conversions':true});
               gtag('config', 'G-VL4F55E1WT');
	</script>

	
	<link href="/themes/user/easysigns_commerce/dist/0.63be37b9980e2f70e591.css" rel="stylesheet"><link href="/themes/user/easysigns_commerce/dist/app.553e39d2d0500d960590.css" rel="stylesheet">

</head>

<body >
<!-- EasySigns GeoRedirect -->
<script type="text/javascript">
window.georedirect_action_id = 143;
</script>
<span class="app">
    <es-app class="">
        <geo-redirect></geo-redirect>
    </es-app>
</span>
<!-- /EasySigns GeoRedirect -->




	<!--  Clickcease.com tracking-->
	<script type="text/javascript">
		var script = document.createElement("script");
		script.async = true; script.type = "text/javascript";
		var target = 'https://www.clickcease.com/monitor/stat.js';
		script.src = target;
		var elem = document.head;
		elem.appendChild(script);
	</script>
	<noscript><a href="https://www.clickcease.com" rel="nofollow"><img src="https://monitor.clickcease.com/stats/stats.aspx" alt="ClickCease" /></a></noscript>

	<!--  Clickcease.com tracking-->

	<!-- Google Tag Manager (noscript) -->
	<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TCV8GWB"
	height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
	<!-- End Google Tag Manager (noscript) -->

	<div id="window-top"></div>
		
	<header id="header">
		
		<div id="header-main" class="container-flex container-fluid-flex">
			<div class="row">

				<!-- Mobile toggle -->
				<a id="mobile-toggle" href="#">
					<img id="mobile-open" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/hamburger.svg" alt="Hamburger menu">
					<img id="mobile-close" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/close.svg" alt="Close menu">
				</a>

				<div class="col-xs-12 col-md-3">
					<a id="logo" href="https://www.easysigns.com.au">
						<img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/v2/general/easy-signs-logo.svg" alt="Easy Signs logo">
					</a>
				</div>
				
				<div id="header-modules" class="col-xs-12 col-md-9">
					<!-- Countdown module -->
					
					<a id="countdownTimerAnchor" style="float:right" href="https://www.easysigns.com.au/next-day-shipping-conditions">
						<div id="countdown-conditional-holder">
							<div id="countdown-holder" class="top-module">
								<div id="delcta">
									<img id="clock-icon" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/countdown-clock.svg" alt="Countdown clock">
									<!-- <span id="countdowntimer"></span> -->
									<span id="countdowntimer"><span>0 <em>Hrs</em> </span><span>00 <em>Mins</em> </span><span>00 <em>Secs</em></span></span>
								</div>
								<div class="divider"></div>
								<p><b>For next<br>day dispatch</b><sup>*</sup></p>
							</div>
						</div>
					</a>

                                        <!-- Countdown module end -->

				<a id="search-mobile" href="https://www.easysigns.com.au/products/search"><img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/search.svg" alt="Search"></a>

				<!-- Phone number -->
				<a id="phone-header" class="top-module" href="tel:1300 972 077">
					<img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/phone-icon.svg" alt="Phone"> <span>1300 972 077</span>
				</a>
				<!-- Search -->
				<div id="search-holder" class="top-module">
					<img id="search-icon" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/search.svg" alt="Search">
					


<form class="form-products-filter-simple" action="https://www.easysigns.com.au/products/search" method="get">
    
		
	    <fieldset>
	        <div class="ft search">
	            <input id="form-products-filter-simple-keywords" name="keywords" type="search" placeholder="Search for products" />
	        </div>
	     </fieldset>
    <div class='hiddenFields'>
<input type="hidden" name="XID" value="8d69ed3e5931d02348774d45f2645b2cde3776c2" />
</div>


</form>

				</div>
			</div>
		</div>
	</div>

	<!-- Main navigation -->
	<nav id="main">
		<div class="row row-not-flex">
			<div class="medium-12 columns relative-parent">
				<ul id="desktop-nav">
					<li ><a href="https://www.easysigns.com.au">Home</a></li>
					<li ><a href="https://www.easysigns.com.au/products/category/most-popular-products">Products</a></li>
					<li ><a href="https://www.easysigns.com.au/artwork-design">Artwork Services</a></li>
					<li class="current"><a href="https://www.easysigns.com.au/news">Blog</a></li>
					<li ><a href="https://www.easysigns.com.au/about">About</a></li>
					<li ><a href="https://www.easysigns.com.au/our-process">Our Process</a></li>
					<li ><a href="https://www.easysigns.com.au/videos">Videos</a></li>
					<li ><a href="https://www.easysigns.com.au/resellers">Resellers</a></li>
					<li ><a href="https://www.easysigns.com.au/contact">Contact</a></li>
				</ul>
				<div id="cart-holder">
					<div class="cart-simple">
	<!-- <h2>Cart</h2> -->
	
		<a class="" href="https://www.easysigns.com.au/quotes">
		<svg id="cart-icon" width="38px" height="31px" viewBox="315 61 49 42" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
		    <!-- Generator: Sketch 41 (35326) - http://www.bohemiancoding.com/sketch -->
		    <defs></defs>
		    <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" transform="translate(316.000000, 63.000000)">
		        <polyline id="Stroke-1" stroke="#FFFFFF" stroke-width="2" stroke-linejoin="round" points="14.7520253 22.351372 8.48496203 30.5546235 46 30.5546235"></polyline>
		        <polyline id="Stroke-3" stroke="#FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" points="7.72159494 4.75577591 43.444962 4.75577591 43.444962 22.351372 14.7520253 22.351372 5.34881013 -7.10542736e-15 0 -7.10542736e-15"></polyline>
		        <path d="M13.4791646,33.3726845 C14.7619241,33.3726845 15.8018734,34.4372058 15.8018734,35.7502744 C15.8018734,37.063343 14.7619241,38.1278643 13.4791646,38.1278643 C12.1964051,38.1278643 11.1564557,37.063343 11.1564557,35.7502744 C11.1564557,34.4372058 12.1964051,33.3726845 13.4791646,33.3726845 L13.4791646,33.3726845 Z" id="Stroke-5" stroke="#FFFFFF" stroke-width="2"></path>
		        <path d="M39.0312911,33.3720884 C40.3146329,33.3720884 41.3545823,34.4366098 41.3545823,35.7502744 C41.3545823,37.063939 40.3146329,38.1284604 39.0312911,38.1284604 C37.7479494,38.1284604 36.708,37.063939 36.708,35.7502744 C36.708,34.4366098 37.7479494,33.3720884 39.0312911,33.3720884 L39.0312911,33.3720884 Z" id="Stroke-7" stroke="#FFFFFF" stroke-width="2"></path>
		    </g>
		</svg>	
		<strong class="_itemCount">0</strong> <!-- in your cart -->
		</a>
	
</div>






				</div>
				<span class="app">
	<es-app class="">
		<login-header style="display:none;" user-id="">
			
<form class="form-logout_user" method="post" action="https://www.easysigns.com.au/"  >
<div class='hiddenFields'>
<input type="hidden" name="return" value="https://www.easysigns.com.au/" />
<input type="hidden" name="ajax_return" value="" />
<input type="hidden" name="ACT" value="111" />
<input type="hidden" name="class" value="form-logout_user" />
<input type="hidden" name="site_id" value="1" />
<input type="hidden" name="csrf_token" value="8d69ed3e5931d02348774d45f2645b2cde3776c2" />
</div>


<input type="submit" id="global-logout-submit" class="dropdown-item" value="Log Out">
</form>
		</login-header>
	</es-app>
</span>

			</div>
		</div>
	</nav>
	<!-- <nav class="nav-account logged-out">

	
	<ul>
	   
	</ul>
	

	

</nav> -->
	<div id="mobile-overlay"></div>
	<div id="mobile-menu">
		
		<ul id="mobile-nav">
			<!-- Other mobile menu is prepended into this section -->
			
			<li>
				<a id="mob-login" href="#">Login</a>
			</li>
			
		</ul>
		
		<!-- Mobile Login -->
		<!-- <div id="mobile-login">
			<div class="row">
				<div class="small-12 column">
					<form>
						<label>Email1</label>
						<input id="username" type="email" name="Email" placeholder="Your email address" required>
						<label>Password1</label>
						<input id="password" type="password" name="Password" placeholder="Password" required>
						<a class="forgot-password" href="#">Forgot Password?</a>
						<input type="submit" id="submit" class="small" value="Log in">
					</form>
				</div>
			</div>
			<a id="mobile-login-return" href="#">
				<i class="fa fa-chevron-left" aria-hidden="true"></i>
			</a>
		</div> -->
	</div>
</header>
<!-- Grey bar with specials and shipping -->
<div id="callout-strip">
	<div class="container-flex">
		<div class="content row-flex">
			<div class="column header-promo">
				    
        <a class="white-link" href="/products/details/pop-up-gazebo">
            <img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/call-out.svg" alt="Sale">
            <div id="monthly-special">
                <span class="lv-sale-badge">SALE</span>
                15% off Pop Up Gazebos - Aluminium Series
            </div>
        </a>
    

			</div>
			<div class="column header-delivery">
				<a href="https://www.easysigns.com.au/flat-rate-shipping"><img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/small-truck.svg" alt="Shipping">$19                    
                    
                    <sup>inc GST</sup>
                    
                     delivery on most products<sup>**</sup>
                </a>
				<!--<a href="https://www.easysigns.com.au/flat-rate-shipping"><img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/small-truck.svg" >NSW Public Holiday Monday 1/10 - Shipping delays expected</a>-->
			</div>
			<div class="column header-design-online">
				<a href="https://www.easysigns.com.au/products/category/design-online-with-free-templates"><img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/v2/home/icon-cursor-outline-white.svg" alt="Design online with FREE templates">Design online with FREE templates</a>
			</div>
			<div class="column columns header-turn-around">
				<a href="https://www.easysigns.com.au/next-day-shipping-conditions"><img src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/24hours.svg" alt="24 hours">24hr production<sup>*</sup></a>
      </div>
		</div>
	</div>
</div>

<div id="body">
	
<div class="wrap">

    <div class="container nav-crumb-container">
        <div class="content">
            <ul class="nav-crumb">
                <li><a href="/" class="" title="Home">Home</a> <i class="fa fa-angle-right" aria-hidden='true'></i></li>
                            <li class="active">News</li>
            </ul>
        </div>
    </div>
</div>
	
	<div id="app">
		<es-app>
			<router-view is-sales-user="0" class="account-management route-view"></router-view>
		</es-app>
	</div>

<section class="blog-listing container-flex container-fluid-flex">
	<article>
		<div class="row">
			<div class="small-12 column"><h1 class="no-underline">Easy Signs News</h1></div>
		</div>
		
		
		

		
		<ul>
		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/products/gallery/SEG_GALLERY_B.jpg" title="Illuminate Your Brand: Introducing Our Backlit SEG Lightbox Displays" alt="Illuminate Your Brand: Introducing Our Backlit SEG Lightbox Displays" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/illuminate-your-brand-introducing-our-backlit-seg-lightbox-displays">Illuminate Your Brand: Introducing Our Backlit SEG Lightbox Displays</a></h2>
							<!-- <p class="meta">by kiera : November 11th, 2025</p> -->
							<p>Introducing our SEG Lightbox Displays! Learn why these will be the next product you purchase, and make your brand stand out in any environment. </p>
							<a class="button" href="/news/details/illuminate-your-brand-introducing-our-backlit-seg-lightbox-displays">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/news/Corflute_Sign.png" title="What is a Corflute® Sign?" alt="What is a Corflute® Sign?" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/what-is-a-corflute-sign">What is a Corflute® Sign?</a></h2>
							<!-- <p class="meta">by Andy Fryer : July 25th, 2025</p> -->
							<p>If you’re looking for a cost-effective way to put your brand on the map, it’s worth considering Corflute® signs. Affordable, lightweight, and perfect for outdoor use, custom Corflute® signs are an excellent option for generating brand awareness.</p>
							<a class="button" href="/news/details/what-is-a-corflute-sign">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/products/gallery/Posters-Gallery-D-%40x2.jpg" title="Your Ultimate Guide to Posters: Sizes, Types and Budgets" alt="Your Ultimate Guide to Posters: Sizes, Types and Budgets" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/guide-to-posters-sizes-types-and-budgets">Your Ultimate Guide to Posters: Sizes, Types and Budgets</a></h2>
							<!-- <p class="meta">by Andy Fryer : June 16th, 2025</p> -->
							<p>Discover everything you need to know about posters—sizes, types, materials, and budget-friendly options. Whether you’re promoting an event or boosting brand visibility, this guide helps you choose the right poster and design it for maximum impact. </p>

<p><a href="https://www.easysigns.com.au/products/details/posters" title=""><span></span></a><span></span></p>
							<a class="button" href="/news/details/guide-to-posters-sizes-types-and-budgets">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/news/black-friday-banners-in-supermarket-concept-with-c-2025-03-06-03-20-45-utc_%281%29.jpg" title="5 Types of Retail Signage Every Business Needs" alt="5 Types of Retail Signage Every Business Needs" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/5-types-of-retail-signage-every-business-needs">5 Types of Retail Signage Every Business Needs</a></h2>
							<!-- <p class="meta">by Andy Fryer : May 22nd, 2025</p> -->
							<p>Ever walked past a shop and felt instantly drawn in, simply because of the sign out front? That’s no accident. In this blog, we’ll break down the top 5 retail signs every business needs to stand out.</p>
							<a class="button" href="/news/details/5-types-of-retail-signage-every-business-needs">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/news/Gazebos.jpg" title="The Ultimate Size Guide for Portable Gazebos" alt="The Ultimate Size Guide for Portable Gazebos" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/the-ultimate-size-guide-for-portable-gazebos">The Ultimate Size Guide for Portable Gazebos</a></h2>
							<!-- <p class="meta">by Andy Fryer : April 18th, 2025</p> -->
							<p>Not sure which gazebo size suits your needs? This guide breaks down popular portable gazebo sizes with practical examples, helping you choose the perfect fit for markets, events, and brand activations.</p>
							<a class="button" href="/news/details/the-ultimate-size-guide-for-portable-gazebos">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/products/gallery/Laptop-Sickers-Gallery-A.jpg" title="Comparison of Sticker and Label Materials" alt="Comparison of Sticker and Label Materials" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/comparison-of-sticker-and-label-materials">Comparison of Sticker and Label Materials</a></h2>
							<!-- <p class="meta">by beth : March 6th, 2025</p> -->
							<p><i>Stuck</i> on which material to choose? Don’t worry—we’ve got you covered! Check out our handy guide to help you pick the perfect sticker for your needs.</p>
							<a class="button" href="/news/details/comparison-of-sticker-and-label-materials">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/news/7_Great_Market_Stall_Ideas_Using_a_Gazebo.jpg" title="7 Great Market Stall Ideas Using a Gazebo" alt="7 Great Market Stall Ideas Using a Gazebo" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/7-great-market-stall-ideas-using-a-gazebo">7 Great Market Stall Ideas Using a Gazebo</a></h2>
							<!-- <p class="meta">by Andy Fryer : January 21st, 2025</p> -->
							<p>We’ll explore practical tips for how to display and set up your stall &amp; how to style your gazebo</p>
							<a class="button" href="/news/details/7-great-market-stall-ideas-using-a-gazebo">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/news/market-stall-gazebo-2m-2m-full-back-wall-half-side-front.jpg" title="Your Guide To Market Stall Gazebos" alt="Your Guide To Market Stall Gazebos" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/guide-market-stall-gazebos">Your Guide To Market Stall Gazebos</a></h2>
							<!-- <p class="meta">by beth : December 13th, 2024</p> -->
							<p>Learn everything you need to know about choosing the right gazebo for your market stall.</p>
							<a class="button" href="/news/details/guide-market-stall-gazebos">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/products/gallery/Foam-PVC-Sign-Gallery-J.jpg" title="Wedding Signs" alt="Wedding Signs" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/wedding-signs">Wedding Signs</a></h2>
							<!-- <p class="meta">by beth : September 7th, 2023</p> -->
							<p>Explore our wide range of products that are perfect for making your special day a memorable one!</p>
							<a class="button" href="/news/details/wedding-signs">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        

        

    
		

		
			<div class="row">
				<li class="news-entry">
					<div class="medium-6 large-4 columns">
						
						
							
								<img src="https://www.easysigns.com.au/uploads/content/news/Mailer-Box-Insert-Thumbnail.jpg" title="Introducing Mailer Box Inserts" alt="Introducing Mailer Box Inserts" />
							
						
						&nbsp;
					</div>
					<div class="medium-6 large-6 columns">
							<h2><a href="/news/details/introducing-mailer-box-inserts">Introducing Mailer Box Inserts</a></h2>
							<!-- <p class="meta">by Andy Fryer : May 4th, 2022</p> -->
							<p>If you’re looking to order one of our amazing Custom Printed Mailer Boxes and need to pack a few different products into them, then why not have a look at our Mailer Box Inserts!</p>
							<a class="button" href="/news/details/introducing-mailer-box-inserts">Read More</a>
					</div>
				</li>
			</div>
			<hr class="dotted">

        
		</ul>
		

        

    
            
            <p class="paginate">
                &nbsp;<strong>1</strong>&nbsp;<a href="https://www.easysigns.com.au/news/P10">2</a>&nbsp;<a href="https://www.easysigns.com.au/news/P20">3</a>&nbsp;<a href="https://www.easysigns.com.au/news/P10">&gt;</a>&nbsp;&nbsp;<a href="https://www.easysigns.com.au/news/P30">Last &rsaquo;</a>
            </p>
            
        

	</article>
</section>

	</div> 

    <div name="overlay-loader" id="overlay-loader" class="overlay-loader-head hide-overlay-loader">
    <div class="overlay-loader-inner">
        <div class="overlay-loader-content is-loading">
            <div class="es-loader es-loader--large is-loading"></div>
            <img class="e-icon loader-e-icon" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/about/easy-signs-icon.svg"
                alt="Easy Signs E">
        </div>
    </div>
</div>

<style>
    .hide-overlay-loader {
        display: none !important;
    }

    .overlay-loader-head {
        left: 0;
        z-index: 1000;
        top: 0;
        width: 100%;
        height: 100%;
        position: fixed;
        background-color: rgb(34, 34, 34, 0.5);
    }

    .overlay-loader-inner {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .overlay-loader-content {
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .loader-e-icon {
        position: relative;
        top: -44px;
        left: -88px;
        width: 70px;
    }
</style>

	<a id="scroll-top" class="scrollto" scrollto="window-top" href="#"><i class="fa fa-arrow-up" aria-hidden="true"></i></a>
	<footer>
		<!-- Embed subscriptions form -->
		<div id="subscription-area" class="subscription-area--new">

    
    <!-- subscription bar -->
    <div class="content container-flex container-fluid-flex">
        <div class="row-flex">
            <div class="col-xs-12 col-md-5">
                <div class="row">
                    <img class="float-left" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/images/paperplane.svg" alt="Paper plane">
                    <div class="float-left">
                        <h5>Monthly specials</h5>
                        <p>Be the first to know about our huge monthly specials</p>
                    </div>
                </div>
            </div>
            <div class="col-xs-12 col-md-7">

                

                <form class="form-mailing-list-subscribe" method="post" action="https://www.easysigns.com.au/"  >
<div class='hiddenFields'>
<input type="hidden" name="return" value="https://www.easysigns.com.au/newsletter/subscribed" />
<input type="hidden" name="ajax_return" value="" />
<input type="hidden" name="ACT" value="119" />
<input type="hidden" name="class" value="form-mailing-list-subscribe" />
<input type="hidden" name="site_id" value="1" />
<input type="hidden" name="csrf_token" value="8d69ed3e5931d02348774d45f2645b2cde3776c2" />
</div>


                <div class="row-flex">
                    <div class="medium-4 columns">
                        <label for="form-mailing-list-subscribe-name">Name:</label>
                        <input id="form-mailing-list-subscribe-name" type="text" name="createsend-name" placeholder="Name" required="required" />
                    </div>
                    <div class="medium-4 columns">
                        <label for="form-mailing-list-subscribe-email">Email:</label>
                        <input id="form-mailing-list-subscribe-email" type="text" placeholder="Email" name="createsend-email" required="required" />
                    </div>
                    <div class="medium-4 columns">
                        <button class="button mt-1" type="submit">Subscribe</button>
                    </div>
                </div>
                </form>
            </div>
        </div>
    </div>
    
    
</div>


		<div class="footer-content small-hide">
			<div class="row-flex">
				<div class="small-12 column">
					<h6>Popular products</h6>
					<ul id="footer-popular-products">
						
						<li><a href="/products/details/custom-label-rolls" title="Custom Label Rolls">Custom Label Rolls</a></li>
<li><a href="/products/details/vinyl-banners" title="Vinyl Banners">Vinyl Banners</a></li>
<li><a href="/products/category/pull-up-banners" title="Pull Up Banners">Pull Up Banners</a></li>
<li><a href="/products/details/signflute-corrugated-plastic-signs" title="Signflute™ Corrugated Plastic Signs">Signflute™ Corrugated Plastic Signs</a></li>
<li><a href="/products/details/corflute-signs" title="Corflute Signs">Corflute® Signs</a></li>
<li><a href="/products/category/a-frame-signs" title="A-Frame Signs">A-Frame Signs</a></li>
<li><a href="/products/details/teardrop-banners" title="Teardrop Banners">Teardrop Banners</a></li>
<li><a href="/products/details/aluminium-composite-panel-signs" title="Aluminium Composite Panel">Aluminium Composite Panel</a></li>
<li><a href="/products/details/bollard-signs" title="Bollard Signs">Bollard Signs</a></li>
<li><a href="/products/details/custom-printed-stickers" title="Custom Stickers">Custom Stickers</a></li>
<li><a href="/products/details/car-magnets" title="Car Magnets">Car Magnets</a></li>
<li><a href="/products/category/large-format-printing" title="Large Format Printing">Large Format Printing</a></li>
<li><a href="/products/category/building-construction" title="Construction Signs">Construction Signs</a></li>
<li><a href="/products/details/posters" title="Posters">Posters</a></li>
<li><a href="/products/category/real-estate" title="Real Estate Signs">Real Estate Signs</a></li>
<li><a href="/products/details/fabric-banners" title="Fabric Banners">Fabric Banners</a></li>
<li><a href="/products/details/table-throw" title="Table Throws">Table Throws</a></li>
<li><a href="/products/details/pop-up-gazebo" title="Pop Up Gazebo">Pop Up Gazebo</a></li>
<li><a href="/products/details/media-wall" title="Media Wall">Adjustable Media Walls</a></li>
<li><a href="/products/details/bowbanner-f-shape-flag" title="Bow Banners">Bow Banners</a></li>
<li><a href="/products/details/premium-business-cards" title="Premium Business Cards">Business Cards</a></li>
<li><a href="/products/details/easyseg-fabric-frames" title="EasySEG Fabric Frames">EasySEG Fabric Frames</a></li>
<li><a href="/products/details/flyers" title="Flyers">Flyers</a></li>
<li><a href="/products/details/brochures" title="Brochures">Brochures</a></li>
<li><a href="/products/details/seg-lightbox-display" title="Collapsible SEG Lightbox">Collapsible SEG Lightbox</a></li>
<li><a href="/products/details/modular-seg-lightbox-display" title="Modular SEG Lightbox">Modular SEG Lightbox</a></li>


					</ul>
				</div>
			</div>
		</div>
		
			
			<div class="footer-content last">
			
				<div class="row-flex">
					<div class="medium-6 columns">
						<h6>Help &amp; support</h6>
						<ul id="support">
							<li><a href="https://www.easysigns.com.au/downloads">Artwork Specifications</a></li>
							<li><a href="https://www.easysigns.com.au/paper-size-tool">Paper Sizes Reference Tool</a></li>
							<li><a href="https://www.easysigns.com.au/resellers">Resellers</a></li>
                            <li><a href="https://www.easysigns.com">Visit our US site</a></li>
                            <li><a href="https://www.easysigns.com.au/testimonials">Reviews</a></li>
							<!-- <li>Banner sizing</li> -->
							<li><a href="https://www.easysigns.com.au/careers">Careers</a></li>
							<!-- <li>FAQs</li> -->
							<li><a href="https://www.easysigns.com.au/next-day-shipping-conditions">Next Day Shipping</a></li>
							
                        </ul>
					</div>
					<div class="medium-6 columns">
						<div class="row-flex">
							<div class="medium-6 columns row-cleanup">
								<h6>Address</h6>
								<p><b>Easy Signs Pty Ltd</b> <br>144 Hartley Road <br>Smeaton Grange NSW 2567<br/>Australia</p>
							</div>
							<div class="medium-6 columns row-cleanup">
								<h6>Get in touch</h6>
								<p><b>Phone</b>: <a href="tel:1300 972 077">1300 972 077</a><br>
									<b>Email</b>: <span data-eeEncEmail_xsyWrDelxc='1'>.(JavaScript must be enabled to view this email address)</span><script type="text/javascript">/*<![CDATA[*/var out = '',el = document.getElementsByTagName('span'),l = ['>','a','/','<',' 117',' 97',' 46',' 109',' 111',' 99',' 46',' 115',' 110',' 103',' 105',' 115',' 121',' 115',' 97',' 101',' 64',' 115',' 101',' 108',' 97',' 115','>','\"',' 117',' 97',' 46',' 109',' 111',' 99',' 46',' 115',' 110',' 103',' 105',' 115',' 121',' 115',' 97',' 101',' 64',' 115',' 101',' 108',' 97',' 115',':','o','t','l','i','a','m','\"','=','f','e','r','h','a ','<'],i = l.length,j = el.length;while (--i >= 0)out += unescape(l[i].replace(/^\s\s*/, '&#'));while (--j >= 0)if (el[j].getAttribute('data-eeEncEmail_xsyWrDelxc'))el[j].innerHTML = out;/*]]>*/</script>
								</p>
								<a href="https://www.facebook.com/myeasysigns/" target="blank"><i class="fa fa-facebook-square" aria-hidden="true"></i></a>
																<a href="https://x.com/easysigns" target="blank"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
																<a href="https://www.instagram.com/easysigns/" target="blank"><i class="fa fa-instagram" aria-hidden="true"></i></a>
							</div>
						</div>
					</div>
				</div>
			</div>
			
		
		<div id="copyright">
			&copy; Copyright Easy Signs Pty Ltd. 2026
			<ul class="sitemap">
				<li><a href="https://www.easysigns.com.au">Home</a> |</li>
				<li><a href="https://www.easysigns.com.au/products">Products</a> |</li>
				<li><a href="https://www.easysigns.com.au/artwork-design">Artwork Services</a> |</li>
				<li><a href="https://www.easysigns.com.au/news">Blog</a> |</li>
				<li><a href="https://www.easysigns.com.au/contact">Contact</a> |</li>
				<li><a href="https://www.easysigns.com.au/about">About</a> |</li>
				<li><a href="https://www.easysigns.com.au/our-process">Our Process</a> |</li>
				<li><a href="https://www.easysigns.com.au/downloads">Downloads</a> |</li>
				<li><a href="https://www.easysigns.com.au/terms-conditions">Terms &amp; Conditions</a> |</li>
				<li><a href="https://www.easysigns.com.au/privacy-policy">Privacy Policy</a></li>
				
			</ul>
		</div>

	</footer>
	<hr class="print-only" />
	<div id="print-contact--new" class="print-only">
		<table width="100%">
			<tr valign="top">
				<td width="30%">
					<h6>Address</h6>
					<p><b>Easy Signs Pty Ltd</b> <br>144 Hartley Road <br>Smeaton Grange NSW 2567<br/>Australia</p>
				</td>
				<td width="35%">
					<h6>Contact Us</h6>
					<p>
						<b>Phone</b>: <a href="tel:1300 972 077">1300 972 077</a><br>
						<b>Email</b>: <span data-eeEncEmail_AxnOaiiDHq='1'>.(JavaScript must be enabled to view this email address)</span><script type="text/javascript">/*<![CDATA[*/var out = '',el = document.getElementsByTagName('span'),l = ['>','a','/','<',' 117',' 97',' 46',' 109',' 111',' 99',' 46',' 115',' 110',' 103',' 105',' 115',' 121',' 115',' 97',' 101',' 64',' 115',' 101',' 108',' 97',' 115','>','\"',' 117',' 97',' 46',' 109',' 111',' 99',' 46',' 115',' 110',' 103',' 105',' 115',' 121',' 115',' 97',' 101',' 64',' 115',' 101',' 108',' 97',' 115',':','o','t','l','i','a','m','\"','=','f','e','r','h','a ','<'],i = l.length,j = el.length;while (--i >= 0)out += unescape(l[i].replace(/^\s\s*/, '&#'));while (--j >= 0)if (el[j].getAttribute('data-eeEncEmail_AxnOaiiDHq'))el[j].innerHTML = out;/*]]>*/</script><br>
						<b>Website</b>: <a href="https://www.easysigns.com.au">www.easysigns.com.au</a><br>
					</p>
				</td>
				<td width="35%">
					<h6>Let's get social</h6>
					<p>
						<i class="icon-facebook-square-brands" aria-hidden="true"></i> facebook.com/myeasysigns<br>
                        						<i class="icon-twitter-square-brands" aria-hidden="true"></i> x.com/easysigns<br>
                                                <i class="icon-instagram-brands" aria-hidden="true"></i> instagram.com/easysigns<br>
					</p>
				</td>
			</tr>
			<tr>
				<td colspan="3">
					<div class="logo-list"></div>
				</td>
			</tr>
		</table>
	</div>

	<!-- Cloud Libs -->
	<script src="https://cdn.jsdelivr.net/npm/jquery-validation@1.21.0/dist/jquery.validate.min.js"></script>
	<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
	  integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
	  crossorigin="anonymous"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.3/jquery.mousewheel.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/masonry/3.1.5/masonry.pkgd.min.js"></script>

	

	<script src="/themes/user/easysigns_commerce/dist/node_modules.a496ef4b331a85ba7d4b.chunk.js"></script><script src="/themes/user/easysigns_commerce/dist/util-js-native.28d1f94f618799effcfb.js"></script> 	
	

	

	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/jQuery/form/jquery.form-2.4.3.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/jQuery/cycle/jquery.cycle-2.94.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/custom/search-filter.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/custom/behaviours.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/scripts-20170413a.js" type="text/javascript"></script>

	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/slick-1.9.0.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/tooltipster/js/tooltipster.bundle.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/select2-4.0.13/js/select2.full.min.js"></script>
	<script type="text/javascript" src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/dropzone/dropzone-5.0.0.min.js"></script> <!-- TODO: load this on needed pages only -->

	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/jQuery/placeholder/jquery.placeholder-2.0.7.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/custom/papersizes/js/scroll.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/custom/papersizes/js/functions.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/custom/browser-os.min.js"></script>

	<script defer src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/greensock/TweenMax.min.js"></script>
	<script defer src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/foundation-6.3.1.min.js"></script>

	<script src="https://cdn.jsdelivr.net/npm/moment@2.30.1/moment.min.js"></script>
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/jQuery/countdown/jquery.countdown-2.2.0.min.js"></script>
	<script src="https://cdn.jsdelivr.net/npm/moment-timezone@0.5.45/builds/moment-timezone-with-data.min.js"></script>

	<script src="/themes/user/easysigns_commerce/dist/node_modules.a496ef4b331a85ba7d4b.chunk.js"></script><script src="/themes/user/easysigns_commerce/dist/validation-js-native.a8a852fdca346d6fc1e1.js"></script> 	
	<script src="https://www.easysigns.com.au/themes/user/site_themes/default/responsive/js/jquery.alterclass.js" type="text/javascript"></script>
	<script src="/themes/user/easysigns_commerce/dist/node_modules.a496ef4b331a85ba7d4b.chunk.js"></script><script src="/themes/user/easysigns_commerce/dist/app.7ea41fef847d429ef378.js"></script><script src="/themes/user/easysigns_commerce/dist/easysigns-accounts.48d909c8443b7cfbe981.js"></script>

	<script>
		window.initTippy = function() {
			if (typeof tippy !== 'undefined') {
					tippy('[data-tippy-content]', {
						arrow: true,
						interactive: true,
						delay: 50,
						placement: 'top',
						hideOnClick: false,
						animation: 'shift-away-subtle',
					});
				}
		};

        window.getUrlParameter = function (sParam) {
            let sPageURL = window.location.search.substring(1),
                sURLVariables = sPageURL.split('&'),
                sParameterName, i;

            for (i = 0; i<sURLVariables.length; i++) {
                sParameterName = sURLVariables[i].split('=');

                if (sParameterName[0] === sParam) {
                    return sParameterName[1] === undefined ? true : decodeURIComponent(sParameterName[1]);
                }
            }
        };

        window.playVideo = function () {
            let playVideo = window.getUrlParameter('playVideo');

            if (playVideo == 1) {$('.video-link.autoplay').trigger('click');}
        };

		window.addEventListener('DOMContentLoaded', function() {
			(function($) {
				$('#countdowntimer').countdown(moment.tz("Australia/Sydney").hours("17").minutes("1").seconds("0").toDate())
					.on('update.countdown', function(event) {
						$(this).html(event.strftime(''
							+ '<span>%-H %!H:<em>Hr</em>,<em>Hrs</em>; </span>'
							+ '<span>%-M %!M:<em>Min</em>,<em>Mins</em>; </span>'
							+ '<span>%-S %!S:<em>Sec</em>,<em>Secs</em>;</span>'
						));
				}).on('finish.countdown', function(event) {
					$('#countdownTimerAnchor').animate({
						'width': 0
					}, {
						'duration': 1000,
						'complete': function() {$(this).remove();}
					});
				});

				$(document).foundation();

				var el = document.createElement('script');
				var itemList = $('.nav-crumb').find('li');
				var itemListElement = [];

				var positionCtr = 1;
				$.each(itemList, function(i){
					var _name = $(this).text();

					if (_name.trim() == '') {return;}

					var _item = $(this).find('a').attr('href');

					if (_item == '/') _item = window.location.origin;
					else if (_item == undefined) _item = window.location.href;

					var _json = {
						"@type": "ListItem",
						"position": positionCtr++,
						"name": _name.trim(),
						"item": _item
					}
					itemListElement.push(_json);
				});

				el.type = 'application/ld+json';
				el.text = JSON.stringify({ "@context": "http://schema.org",  "@type": "BreadcrumbList", "itemListElement": itemListElement});

				document.querySelector('head').appendChild(el);
				window.initTippy();

                // detect url parameter if it exists
                window.playVideo();

			})(jQuery);
		});
	</script>
	<!-- TrustBox script -->
	<script type="text/javascript" src="//widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js" async></script>
	<!-- End Trustbox script -->
	<script type="text/javascript">Dropzone.autoDiscover = false;</script>
	<script src="https://cdn.jsdelivr.net/npm/axios@1.9.0/dist/axios.min.js" type="text/javascript"></script>

		<!--Start of Zopim Live Chat Script-->
	<script type="text/javascript">
		window.$zopim||(function(d,s){var z=$zopim=function(c){z._.push(c)},$=z.s=
				d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set.
		_.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute("charset","utf-8");
			$.src="//v2.zopim.com/?sfTMJnrOMpLm61bk1g1Mwdk2ytdCJWuE";z.t=+new Date;$.
					type="text/javascript";e.parentNode.insertBefore($,e)})(document,"script");
	</script>
	<!--End of Zopim Live Chat Script-->
		</body>
</html>
