<!doctype html>
<html lang="en">
	<head>
		<!-- Charset and Viewport (essential) -->
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1" />

		<!--
			1. PRE-REGISTER Partytown service worker as early as possible.
			   Gives the SW time to install + activate while CSS/fonts load below.
			   The Partytown snippet (step 5) will find it already active and skip
			   the statechange wait, eliminating the cold-load race condition.
			   Also cleans up any stale debug SW from prior deploys.
		-->
		<script>
			(function () {
				if (!('serviceWorker' in navigator)) return;
				var ptLib = '/~partytown/';

				// One-time: unregister stale Partytown SWs from other scopes (e.g. /~partytown/debug/)
				navigator.serviceWorker.getRegistrations().then(function (regs) {
					regs.forEach(function (r) {
						if (r.scope.indexOf('/~partytown/') !== -1 && !r.scope.endsWith(ptLib)) {
							r.unregister();
						}
					});
				});

				// Pre-register the production SW — browser deduplicates if already registered
				navigator.serviceWorker
					.register(ptLib + 'partytown-sw.js', { scope: ptLib })
					.catch(function () {});
			})();
		</script>

		<!-- 2. Warm connections + preload gtag script (runs while SW installs above) -->
		<link rel="dns-prefetch" href="https://www.googletagmanager.com" />
		<link rel="preconnect" href="https://www.googletagmanager.com" crossorigin />
		<link rel="dns-prefetch" href="https://www.google-analytics.com" />
		<link rel="preconnect" href="https://www.google-analytics.com" crossorigin />
		<link
			rel="preload"
			href="https://www.googletagmanager.com/gtag/js?id=G-7RN9EHYWF2&amp;l=dataLayerPt"
			as="script"
			crossorigin
		/>

		<!-- 3. Partytown config: GA4 in worker (dataLayerPt/gtagPt). Debug: ?ptdebug=1 | localStorage GNG_PT_DEBUG=1 | localhost -->
		<script>
			(function () {
				var h = typeof location !== 'undefined' ? location.hostname : '';
				var localHost = h === 'localhost' || h === '127.0.0.1';
				var qsDebug = false;
				try {
					qsDebug = new URLSearchParams(location.search).get('ptdebug') === '1';
				} catch (e) {}
				var lsDebug = false;
				try {
					lsDebug = localStorage.getItem('GNG_PT_DEBUG') === '1';
				} catch (e) {}
				var ptDebug = localHost || qsDebug || lsDebug;
				partytown = {
					forward: [
						['dataLayerPt.push', { preserveBehavior: true }],
						['gtagPt', { preserveBehavior: true }]
					],
					debug: ptDebug,
					fallbackTimeout: ptDebug ? 8000 : 4000,

					// Proxy GA/GTM requests through same-origin nginx so the
					// service worker fetch avoids CORS issues and sendBeacon limits.
					// Uses path-based routing: /proxypt/<host>/<path>?<query>
					// See partytown-nginx-proxy.md for the nginx location block.
					resolveUrl: function (url) {
						if (
							url.hostname === 'www.google-analytics.com' ||
							url.hostname === 'www.googletagmanager.com' ||
							url.hostname === 'analytics.google.com' ||
							url.hostname === 'region1.google-analytics.com'
						) {
							return new URL(
								'/proxypt/' + url.hostname + url.pathname + url.search,
								location.origin
							);
						}
						return url;
					},

					// sendBeacon is unavailable in service workers; force plain fetch
					// so collect requests fire immediately instead of being batched/retried.
					resolveSendBeaconRequestParameters: function () {
						return { keepalive: false };
					}
				};
				if (ptDebug) {
					console.log('[GNG Partytown] config', partytown, {
						hostname: h,
						ptdebugQuery: qsDebug,
						GNG_PT_DEBUG: lsDebug
					});
				}
			})();
		</script>

		<!-- 4. Partytown GA4 scripts (type="text/partytown" — executed in worker, not main thread) -->
		<script
			type="text/partytown"
			src="https://www.googletagmanager.com/gtag/js?id=G-7RN9EHYWF2&l=dataLayerPt"
		></script>
		<script type="text/partytown">
			window.dataLayerPt = window.dataLayerPt || [];
			window.gtagPt = function () {
				dataLayerPt.push(arguments);
			};
			gtagPt('js', new Date());
			document.documentElement.setAttribute('data-pt-ga4-ready', '1');
		</script>

		<!-- 5. Inline Partytown library (0.13.2) — boots worker, finds pre-registered SW from step 1 -->
		<script>
			/* Partytown 0.13.2 - MIT QwikDev */
const t={preserveBehavior:!1},e=e=>{if("string"==typeof e)return[e,t];const[n,r=t]=e;return[n,{...t,...r}]},n=Object.freeze((t=>{const e=new Set;let n=[];do{Object.getOwnPropertyNames(n).forEach((t=>{"function"==typeof n[t]&&e.add(t)}))}while((n=Object.getPrototypeOf(n))!==Object.prototype);return Array.from(e)})());!function(t,r,o,i,a,s,c,l,d,p,u=t,f){function h(){f||(f=1,"/"==(c=(s.lib||"/~partytown/")+(s.debug?"debug/":""))[0]&&(d=r.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(l=setTimeout(v,(null==s?void 0:s.fallbackTimeout)||1e4),r.addEventListener("pt0",w),a?y(1):o.serviceWorker?o.serviceWorker.register(c+(s.swPath||"partytown-sw.js"),{scope:c}).then((function(t){t.active?y():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&y()}))}),console.error):v())))}function y(e){p=r.createElement(e?"script":"iframe"),t._pttab=Date.now(),e||(p.style.display="block",p.style.width="0",p.style.height="0",p.style.border="0",p.style.visibility="hidden",p.setAttribute("aria-hidden",!0)),p.src=c+"partytown-"+(e?"atomics.js?v=0.13.2":"sandbox-sw.html?"+t._pttab),r.querySelector(s.sandboxParent||"body").appendChild(p)}function v(n,o){for(w(),i==t&&(s.forward||[]).map((function(n){const[r]=e(n);delete t[r.split(".")[0]]})),n=0;n<d.length;n++)(o=r.createElement("script")).innerHTML=d[n].innerHTML,o.nonce=s.nonce,r.head.appendChild(o);p&&p.parentNode.removeChild(p)}function w(){clearTimeout(l)}s=t.partytown||{},i==t&&(s.forward||[]).map((function(r){const[o,{preserveBehavior:i}]=e(r);u=t,o.split(".").map((function(e,r,o){var a;u=u[o[r]]=r+1<o.length?u[o[r]]||(a=o[r+1],n.includes(a)?[]:{}):(()=>{let e=null;if(i){const{methodOrProperty:n,thisObject:r}=((t,e)=>{let n=t;for(let t=0;t<e.length-1;t+=1)n=n[e[t]];return{thisObject:n,methodOrProperty:e.length>0?n[e[e.length-1]]:void 0}})(t,o);"function"==typeof n&&(e=(...t)=>n.apply(r,...t))}return function(){let n;return e&&(n=e(arguments)),(t._ptf=t._ptf||[]).push(o,arguments),n}})()}))})),"complete"==r.readyState?h():(t.addEventListener("DOMContentLoaded",h),t.addEventListener("load",h))}(window,document,navigator,top,window.crossOriginIsolated);
		</script>

		<!-- 6. GA4 transport bootstrap: prefer Partytown, fall back to main thread if needed -->
		<script>
			(function () {
				var GA4_ID = 'G-7RN9EHYWF2';
				var PT_READY_ATTR = 'data-pt-ga4-ready';
				var TRANSPORT_ATTR = 'data-gng-ga4-transport';
				var PAGEVIEW_EVENT = 'gng:ga4-pageview';
				var PT_WARMUP_MS = 600;
				var PT_TIMEOUT_MS = 1500;
				var PT_POLL_MS = 50;
				var transport = null;
				var pendingPageViews = [];
				var mainScriptState = 'idle';
				var mainScriptCallbacks = [];

				function verbose() {
					var h = location.hostname;
					if (h === 'localhost' || h === '127.0.0.1') return true;
					try {
						if (localStorage.getItem('GNG_PT_DEBUG') === '1') return true;
					} catch (e) {}
					try {
						if (new URLSearchParams(location.search).get('ptdebug') === '1') return true;
					} catch (e) {}
					return false;
				}

				function log() {
					if (!verbose()) return;
					var a = ['[GNG Partytown/GA4 vanilla]'].concat(Array.prototype.slice.call(arguments));
					console.log.apply(console, a);
				}

				function warn() {
					if (!verbose()) return;
					var a = ['[GNG Partytown/GA4 vanilla]'].concat(Array.prototype.slice.call(arguments));
					console.warn.apply(console, a);
				}

				function partytownReady() {
					return document.documentElement.getAttribute(PT_READY_ATTR) === '1';
				}

				function setTransport(nextTransport) {
					if (transport) return transport === nextTransport;
					transport = nextTransport;
					document.documentElement.setAttribute(TRANSPORT_ATTR, nextTransport);
					log('transport locked', nextTransport);
					return true;
				}

				function buildPayload(path, title) {
					var resolvedTitle = title || document.title;
					var dbg = verbose();
					var cfg = { page_title: resolvedTitle, page_path: path, send_page_view: false };
					var pv = { page_title: resolvedTitle, page_path: path };
					if (dbg) {
						cfg.debug_mode = true;
						pv.debug_mode = true;
					}
					return { cfg: cfg, pv: pv };
				}

				function sendViaPartytown(path, title) {
					if (transport === 'main') return false;
					if (!partytownReady() || typeof window.gtagPt !== 'function') {
						return false;
					}
					if (!transport) setTransport('partytown');
					var payload = buildPayload(path, title);
					log('page_view via Partytown', path, title);
					window.gtagPt('config', GA4_ID, payload.cfg);
					window.gtagPt('event', 'page_view', payload.pv);
					return true;
				}

				function mainThreadReady() {
					return mainScriptState === 'ready' && typeof window.gtagGngMain === 'function';
				}

				function flushMainScriptCallbacks() {
					var callbacks = mainScriptCallbacks.slice();
					mainScriptCallbacks = [];
					callbacks.forEach(function (cb) {
						try {
							cb();
						} catch (e) {
							warn('main-thread callback failed', e);
						}
					});
				}

				function ensureMainThreadGa4(onReady) {
					if (mainThreadReady()) {
						if (typeof onReady === 'function') onReady();
						return;
					}

					if (typeof onReady === 'function') {
						mainScriptCallbacks.push(onReady);
					}

					if (mainScriptState !== 'idle') return;

					mainScriptState = 'loading';
					window.dataLayerGngMain = window.dataLayerGngMain || [];
					window.gtagGngMain = function () {
						window.dataLayerGngMain.push(arguments);
					};
					window.gtagGngMain('js', new Date());

					var script = document.createElement('script');
					script.async = true;
					script.src =
						'/proxypt/www.googletagmanager.com/gtag/js?id=' +
						encodeURIComponent(GA4_ID) +
						'&l=dataLayerGngMain';
					script.onload = function () {
						mainScriptState = 'ready';
						log('main-thread fallback ready');
						flushMainScriptCallbacks();
						flushPendingPageViews();
					};
					script.onerror = function () {
						mainScriptState = 'failed';
						warn('main-thread fallback failed to load');
						flushMainScriptCallbacks();
					};
					document.head.appendChild(script);
				}

				function sendViaMainThread(path, title) {
					if (!mainThreadReady()) return false;
					var payload = buildPayload(path, title);
					log('page_view via main-thread fallback', path, title);
					window.gtagGngMain('config', GA4_ID, payload.cfg);
					window.gtagGngMain('event', 'page_view', payload.pv);
					return true;
				}

				function flushPendingPageViews() {
					if (!pendingPageViews.length) return;

					var remaining = [];
					for (var i = 0; i < pendingPageViews.length; i += 1) {
						var item = pendingPageViews[i];
						var sent = false;

						if (transport === 'main') {
							sent = sendViaMainThread(item.path, item.title);
						} else if (partytownReady()) {
							sent = sendViaPartytown(item.path, item.title);
						}

						if (!sent) {
							remaining.push(item);
						}
					}

					pendingPageViews = remaining;
					if (!pendingPageViews.length) {
						log('pending pageviews flushed');
					}
				}

				function queuePageView(path, title, source) {
					pendingPageViews.push({
						path: path || location.pathname + location.search,
						title: title || null,
						source: source || 'unknown'
					});

					if (pendingPageViews.length > 25) {
						pendingPageViews = pendingPageViews.slice(-25);
					}

					log('queued page_view', source, path, title, 'pending=', pendingPageViews.length);
					flushPendingPageViews();
				}

				function activateMainThreadFallback(reason) {
					if (transport === 'partytown') return;
					setTransport('main');
					log('activating main-thread fallback', reason);
					ensureMainThreadGa4(function () {
						flushPendingPageViews();
					});
				}

				function warmMainThreadFallback() {
					if (transport || partytownReady()) return;
					log('warming main-thread fallback');
					ensureMainThreadGa4();
				}

				function watchPartytownReadiness() {
					if (partytownReady()) {
						setTransport('partytown');
						flushPendingPageViews();
						return;
					}

					var startedAt = Date.now();
					var warmed = false;
					var poll = setInterval(function () {
						if (partytownReady()) {
							clearInterval(poll);
							if (transport !== 'main') {
								setTransport('partytown');
							}
							flushPendingPageViews();
							return;
						}

						if (!warmed && Date.now() - startedAt >= PT_WARMUP_MS) {
							warmed = true;
							warmMainThreadFallback();
						}

						if (Date.now() - startedAt >= PT_TIMEOUT_MS) {
							clearInterval(poll);
							activateMainThreadFallback('partytown-timeout');
						}
					}, PT_POLL_MS);
				}

				document.addEventListener(
					PAGEVIEW_EVENT,
					function (event) {
						var detail = (event && event.detail) || {};
						queuePageView(
							detail.path || location.pathname + location.search,
							detail.title || document.title,
							detail.source || 'event'
						);
					},
					false
				);

				document.addEventListener(
					'visibilitychange',
					function () {
						if (document.visibilityState === 'hidden' && !transport) {
							activateMainThreadFallback('document-hidden');
						}
					},
					false
				);

				window.addEventListener(
					'pagehide',
					function () {
						if (!transport) {
							activateMainThreadFallback('pagehide');
						}
					},
					false
				);

				queuePageView(location.pathname + location.search, null, 'initial');
				watchPartytownReadiness();
			})();
		</script>

		<!-- SvelteKit Head (meta tags, title, and CSS will be inserted here) -->
		
		<link href="./_app/immutable/assets/0.CkWgchGm.css" rel="stylesheet">
		<link href="./_app/immutable/assets/CarouselOffers.B8VOkkiD.css" rel="stylesheet">
		<link href="./_app/immutable/assets/PageContent.DdsrX6v4.css" rel="stylesheet"><!--12qhfyh--><!--[--><meta name="description" content="Grand National Guide provides the best guide to the 2026 Grand National Horse Race. Get all the latest info, odds, best tips and a full list of runners to help you with your betting on the Grand National which will take place on Saturday, 10th of April 2026 at 16:00. We also list the latest bookmaker offers and free bets."/><!--]--> <!--[!--><!--]--> <!--[--><link rel="canonical" href="https://www.grand-national-guide.co.uk/"/><!--]--> <!--[--><meta name="robots" content="index, follow"/><!--]--> <meta property="og:url" content="/"/> <meta property="og:image" content="https://olbg-shared.scdn1.secure.raxcdn.com/assets/images/olbg-brand/olbg-social-media-black-2-1200x630.png?v=1780965318203"/> <meta property="og:image:url" content="https://olbg-shared.scdn1.secure.raxcdn.com/assets/images/olbg-brand/olbg-social-media-black-2-1200x630.png?v=1780965318203"/> <meta property="og:image:width" content="1200"/> <meta property="og:image:height" content="630"/> <meta property="og:type" content="website"/> <meta property="og:site_name"/> <meta property="og:title" content="Grand National 2026 | Grand National Guide"/> <meta property="og:description" content="Grand National Guide provides the best guide to the 2026 Grand National Horse Race. Get all the latest info, odds, best tips and a full list of runners to help you with your betting on the Grand National which will take place on Saturday, 10th of April 2026 at 16:00. We also list the latest bookmaker offers and free bets."/> <meta name="twitter:card" content="summary_large_image"/> <meta name="twitter:image" content="https://olbg-shared.scdn1.secure.raxcdn.com/assets/images/olbg-brand/olbg-social-media-black-2-1200x630.png?v=1780965318203"/> <meta name="twitter:title" content="Grand National 2026 | Grand National Guide"/> <meta name="twitter:description" content="Grand National Guide provides the best guide to the 2026 Grand National Horse Race. Get all the latest info, odds, best tips and a full list of runners to help you with your betting on the Grand National which will take place on Saturday, 10th of April 2026 at 16:00. We also list the latest bookmaker offers and free bets."/> <link rel="icon" type="image/png" href="/sk-assets/icons/favicon/16x16.png?v=3.1&v=1780965318203" sizes="16x16"/> <link rel="icon" type="image/png" href="/sk-assets/icons/favicon/32x32.png?v=3.1&v=1780965318203" sizes="32x32"/> <link rel="icon" type="image/png" href="/sk-assets/icons/favicon/48x48.png?v=3.1&v=1780965318203" sizes="48x48"/> <link rel="icon" type="image/png" href="/sk-assets/icons/favicon/96x96.png?v=3.1&v=1780965318203" sizes="96x96"/> <link rel="apple-touch-icon" href="/sk-assets/icons/favicon/apple-touch-icon.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="57x57" href="/sk-assets/icons/favicon/apple-touch-icon-57x57.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="72x72" href="/sk-assets/icons/favicon/apple-touch-icon-72x72.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="76x76" href="/sk-assets/icons/favicon/apple-touch-icon-76x76.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="114x114" href="/sk-assets/icons/favicon/apple-touch-icon-114x114.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="120x120" href="/sk-assets/icons/favicon/apple-touch-icon-120x120.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="144x144" href="/sk-assets/icons/favicon/apple-touch-icon-144x144.png?v=3.1&v=1780965318203"/> <link rel="apple-touch-icon" sizes="152x152" href="/sk-assets/icons/favicon/apple-touch-icon-152x152.png?v=3.1&v=1780965318203"/> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-W8298B" title="Google Tag Manager" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <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=
	'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
	})(window,document,'script','dataLayer','GTM-W8298B');</script><!----><title>Grand National 2026 | Grand National Guide</title>

		<!-- Favicon -->
		<link rel="icon" href="/favicon.png?v=1780965318203" type="image/png" />

		<!-- Preload Lato fonts from CDN -->
		<link rel="preload" href="https://olbg-shared.scdn1.secure.raxcdn.com/assets-olbg/libs/@fontsource/lato/files/lato-latin-400-normal.woff2" as="font" type="font/woff2" crossorigin />
		<link rel="preload" href="https://olbg-shared.scdn1.secure.raxcdn.com/assets-olbg/libs/@fontsource/lato/files/lato-latin-700-normal.woff2" as="font" type="font/woff2" crossorigin />
		<link rel="preload" href="https://olbg-shared.scdn1.secure.raxcdn.com/assets-olbg/libs/@fontsource/barlow-condensed/files/barlow-condensed-latin-500-normal.woff2" as="font" type="font/woff2" crossorigin />

	</head>
	<body class="bg-gng-bg" data-sveltekit-preload-data="hover">
		<div style="display: contents"><!--[--><!--[--><!----><div data-sveltekit-reload=""><div class="sticky top-0 z-[1000] w-full max-md:border-b-[3px] max-md:border-gng-orange"><div class="bg-black text-white md:border-b-[3px] md:border-gng-orange shadow-md relative"><div class="container mx-auto px-4"><div class="flex items-center justify-between h-[55px]"><a href="/" class="flex items-center mr-4 lg:mr-8 shrink-0 -translate-y-1 flex-1 md:flex-none w-[13.75rem] md:w-[18.75rem]"><img src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/GNG-logo.webp?v=1780965318203" alt="Grand National Guide Logo" class="h-12 max-w-full object-contain"/></a> <nav id="mobile-nav" class="absolute top-full left-0 w-full md:static md:w-auto md:flex-1 md:ml-4 lg:ml-8 md:h-full bg-black md:bg-transparent hidden md:flex max-h-[calc(100vh-70px)] overflow-y-auto md:overflow-visible md:max-h-none border-t border-gray-800 md:border-none"><ul class="flex flex-col md:flex-row md:h-full"><!--[--><li class="group relative w-full md:w-auto md:h-full md:flex md:items-center"><div class="flex max-md:items-stretch items-center justify-between w-full md:w-auto md:h-full border-b border-gray-800 md:border-none"><a href="/grand-national-runners.php" class=" flex-1 md:flex-none block px-6 py-4 md:px-5 lg:px-6 md:py-6 text-md md:text-sm font-medium md:font-bold md:h-full md:flex md:items-center transition-colors duration-200 gap-1 hover:no-underline text-white hover:text-gng-orange ">Runners <!--[!--><!--]--></a> <!--[!--><!--]--></div> <!--[!--><!--]--></li><li class="group relative w-full md:w-auto md:h-full md:flex md:items-center"><div class="flex max-md:items-stretch items-center justify-between w-full md:w-auto md:h-full border-b border-gray-800 md:border-none"><a href="/grand-national-free-bets.php" class=" flex-1 md:flex-none block px-6 py-4 md:px-5 lg:px-6 md:py-6 text-md md:text-sm font-medium md:font-bold md:h-full md:flex md:items-center transition-colors duration-200 gap-1 hover:no-underline text-white hover:text-gng-orange ">Offers <!--[!--><!--]--></a> <!--[!--><!--]--></div> <!--[!--><!--]--></li><li class="group relative w-full md:w-auto md:h-full md:flex md:items-center"><div class="flex max-md:items-stretch items-center justify-between w-full md:w-auto md:h-full border-b border-gray-800 md:border-none"><a href="/bookies" class=" flex-1 md:flex-none block px-6 py-4 md:px-5 lg:px-6 md:py-6 text-md md:text-sm font-medium md:font-bold md:h-full md:flex md:items-center transition-colors duration-200 gap-1 hover:no-underline text-white hover:text-gng-orange ">Bookies <!--[!--><!--]--></a> <!--[!--><!--]--></div> <!--[!--><!--]--></li><li class="group relative w-full md:w-auto md:h-full md:flex md:items-center"><div class="flex max-md:items-stretch items-center justify-between w-full md:w-auto md:h-full border-b border-gray-800 md:border-none"><a href="/grand-national-tips.php" class=" flex-1 md:flex-none block px-6 py-4 md:px-5 lg:px-6 md:py-6 text-md md:text-sm font-medium md:font-bold md:h-full md:flex md:items-center transition-colors duration-200 gap-1 hover:no-underline text-white hover:text-gng-orange ">Tips <!--[!--><!--]--></a> <!--[!--><!--]--></div> <!--[!--><!--]--></li><li class="group relative w-full md:w-auto md:h-full md:flex md:items-center"><div class="flex max-md:items-stretch items-center justify-between w-full md:w-auto md:h-full border-b border-gray-800 md:border-none"><a href="/grand-national-form.php" class=" flex-1 md:flex-none block px-6 py-4 md:px-5 lg:px-6 md:py-6 text-md md:text-sm font-medium md:font-bold md:h-full md:flex md:items-center transition-colors duration-200 gap-1 hover:no-underline text-white hover:text-gng-orange ">Tools <!--[--><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-3 h-3  hidden lg:inline-block ml-1" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!--]--></a> <!--[--><button type="button" data-submenu-toggle="Tools" class="md:hidden px-6 py-4 text-white hover:bg-gng-orange hover:text-gng-white hover:cursor-pointer focus:outline-none  "><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-4 h-4 transform transition-transform duration-200 rotate-180" data-chevron="Tools"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg></button><!--]--></div> <!--[--><ul data-submenu="Tools" class=" w-full md:w-auto md:min-w-[260px] bg-gray-900 md:bg-black md:absolute md:top-full md:right-0 lg:right-auto lg:left-0 md:border-y-[3px] md:border-gng-orange md:shadow-lg md:z-50 /* Visibility: Tools expanded by default on mobile, others hidden. Desktop uses group-hover */ block md:hidden md:group-hover:block "><!--[--><li><a href="/grand-national-form.php" class="block px-6 py-3 md:px-4 text-sm text-gray-300 md:text-white hover:no-underline hover:text-white hover:bg-gray-800 md:hover:bg-gng-orange border-b border-gray-800 md:border-none group/url"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-4 h-4 -rotate-90 inline-block text-gng-orange mr-2 group-hover/url:text-white" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!---->Form tool</a></li><li><a href="/winner-predictor" class="block px-6 py-3 md:px-4 text-sm text-gray-300 md:text-white hover:no-underline hover:text-white hover:bg-gray-800 md:hover:bg-gng-orange border-b border-gray-800 md:border-none group/url"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-4 h-4 -rotate-90 inline-block text-gng-orange mr-2 group-hover/url:text-white" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!---->Winner predictor</a></li><li><a href="/pinstickers-guide" class="block px-6 py-3 md:px-4 text-sm text-gray-300 md:text-white hover:no-underline hover:text-white hover:bg-gray-800 md:hover:bg-gng-orange border-b border-gray-800 md:border-none group/url"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-4 h-4 -rotate-90 inline-block text-gng-orange mr-2 group-hover/url:text-white" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!---->Lucky dip / Pinstickers</a></li><li><a href="/grand-national-odds.php" class="block px-6 py-3 md:px-4 text-sm text-gray-300 md:text-white hover:no-underline hover:text-white hover:bg-gray-800 md:hover:bg-gng-orange border-b border-gray-800 md:border-none group/url"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-4 h-4 -rotate-90 inline-block text-gng-orange mr-2 group-hover/url:text-white" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!---->Grand National Odds</a></li><li><a href="/articles" class="block px-6 py-3 md:px-4 text-sm text-gray-300 md:text-white hover:no-underline hover:text-white hover:bg-gray-800 md:hover:bg-gng-orange border-b border-gray-800 md:border-none group/url"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-4 h-4 -rotate-90 inline-block text-gng-orange mr-2 group-hover/url:text-white" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!---->Grand National Articles</a></li><!--]--></ul><!--]--></li><!--]--><!----></ul></nav> <div class="md:hidden"><button id="mobile-menu-btn" class="text-white p-2 hover:text-gng-orange focus:outline-none translate-x-2.5" aria-label="Toggle menu"><div class="flex items-center scale-[80%]"><svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path id="hamburger-icon" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path><path id="close-icon" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" class="hidden"></path></svg></div></button></div></div></div> <!--[!--><!--]--></div> <div class="md:hidden bg-black text-white border-b border-gray-800 uppercase text-sm"><div class="flex items-center justify-around h-10"><a href="/" class="flex-1 text-center py-1 hover:text-gng-orange hover:no-underline text-gng-orange font-bold">Home</a> <div class="w-px h-6 bg-gray-800"></div> <a href="/grand-national-runners.php" class="flex-1 text-center py-1 hover:text-gng-orange hover:no-underline text-white">Runners</a> <div class="w-px h-6 bg-gray-800"></div> <a href="/grand-national-tips.php" class="flex-1 text-center py-1 hover:text-gng-orange hover:no-underline text-white">Tips</a></div></div> <!----><script>
	// Vanilla JS for menu interactions (since csr = false, no Svelte hydration)
	(function() {
		const mobileMenuBtn = document.getElementById('mobile-menu-btn');
		const mobileNav = document.getElementById('mobile-nav');
		const hamburgerIcon = document.getElementById('hamburger-icon');
		const closeIcon = document.getElementById('close-icon');
		const submenuToggles = document.querySelectorAll('[data-submenu-toggle]');

		// Helper: toggle a class
		function toggleClass(el, cls) {
			el.classList.toggle(cls);
		}

		// Helper: check if element has class
		function hasClass(el, cls) {
			return el.classList.contains(cls);
		}

		// Hamburger menu toggle
		if (mobileMenuBtn) {
			mobileMenuBtn.addEventListener('click', function() {
				toggleClass(mobileNav, 'hidden');
				toggleClass(hamburgerIcon, 'hidden');
				toggleClass(closeIcon, 'hidden');
			});
		}

		// Mobile submenu accordion toggles
		submenuToggles.forEach(btn => {
			btn.addEventListener('click', function(e) {
				e.stopPropagation();
				const label = btn.getAttribute('data-submenu-toggle');
				const submenu = document.querySelector('[data-submenu="' + label + '"]');
				const chevron = document.querySelector('[data-chevron="' + label + '"]');

				if (submenu) {
					toggleClass(submenu, 'hidden');
				}
				if (chevron) {
					toggleClass(chevron, 'rotate-180');
				}
			});
		});

		// Close menu when clicking a nav link on mobile
		const navLinks = mobileNav.querySelectorAll('a');
		navLinks.forEach(link => {
			link.addEventListener('click', function() {
				// Only close on mobile (when menu is visible)
				if (!hasClass(mobileNav, 'hidden')) {
					mobileNav.classList.add('hidden');
					hamburgerIcon.classList.remove('hidden');
					closeIcon.classList.add('hidden');
				}
			});
		});
	})();
	</script><!----></div><!----> <main class="relative flex-1"><div class="absolute inset-0 max-h-[600px] md:max-h-[500px] pointer-events-none border-b-6 border-gng-orange bg-black/65 z-0"><div class="absolute inset-0 bg-cover mix-blend-color-dodge bg-top no-repeat bg-[url(/sk-assets/images/hero-mobile.jpg)] md:bg-[url(/sk-assets/images/hero-tablet.jpg)] lg:bg-[url(/sk-assets/images/hero-desktop.jpg)]"></div></div> <div class="relative z-2 pt-5 md:pt-10 pb-6 w-full after:content after:left-0 after:right-0 after:bottom-0 after:h-[120px] after:absolute after:bg-gng-green after:z-0 after:border-t-[3px] after:border-gng-orange"><div class="relative container z-1 max-mobile:!px-0 mobile:px-2 md:px-10 max-md:px-4 max-w-[1140px]"><!----><!--[--><!---->
	<script type="application/ld+json">
		{"@context":"https://schema.org","@type":"Event","name":"Grand National 2026","alternateName":"Grand National 2026","url":"/","startDate":"2026-04-26T16:00:00+00:00","location":{"@type":"Place","address":{"@type":"PostalAddress","addressLocality":"Liverpool","addressRegion":"Merseyside","postalCode":"L9 5AS","streetAddress":"Ormskirk Rd"}}}
	</script>
	<!----><!--]-->  <div class=" m-auto md:max-w-[820px] lg:max-w-none static-page "><!--[--><!--[--><header class="max-md:px-3"><!--[--><h1 class="font-condensed text-4xl md:text-5xl text-white text-shadow mb-4">Grand National 2026</h1><!--]--> <!--[!--><!--]--></header><!--]--> <!--[--><div class="offers-carousel my-3 md:my-6  hidden md:block" data-carousel="desktop"><div class="relative"><!--[--><a class="no-underline text-gng-text-grey block group relative " data-slide="0" target="_blank" href="https://olbg.info/26/L4/D/gng_carousel/ctr10434:982/none/robots" aria-hidden="false"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #323741"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #323741" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #323741;"><img alt="BetVictor" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=26" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 100%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10, get £30 in Free Bets + 100% Boost Token</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">18+ New customers only. Opt in, deposit &amp; bet £10+ on any football market (odds 2.00+) within 7 days of registration. No cash out. Get £30 in Free Bets + 1x100% Boost tokens (max £10 stakes) for selected football markets Free Bets expire in 7 days. T&amp;Cs apply.  GambleAware.org | Please gamble responsibly</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><a class="no-underline text-gng-text-grey block group absolute inset-0 pointer-events-none opacity-0 " data-slide="1" target="_blank" href="https://olbg.info/7/L4/D/gng_carousel/ctr7636:982/none/robots" aria-hidden="true"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #1f7d5c"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #027b5d" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #027b5d;"><img alt="bet365" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=7" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 94%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10 &amp; Get £30 in Free Bets for new customers at bet365.</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">Min deposit requirement. Free Bets are paid as Bet Credits and are available for use upon settlement of bets to value of qualifying deposit. Min odds, bet and payment method exclusions apply. Returns exclude Bet Credits stake. Registration required. Time limits and T&amp;Cs apply. #ad</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><a class="no-underline text-gng-text-grey block group absolute inset-0 pointer-events-none opacity-0 " data-slide="2" target="_blank" href="https://olbg.info/2/L4/D/gng_carousel/ctr10450:982/none/robots" aria-hidden="true"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #00143c"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #00143c" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="William Hill" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 86%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10, Get £30 in Free Bets</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">18+. Play Safe. From 00:01 on 18.10.2022. £30 bonus. New customers only. Minimum £10 stake on odds of 1/2 (1.5) or greater on sportsbook (excluding Virtual markets). Further terms apply. #ad</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><a class="no-underline text-gng-text-grey block group absolute inset-0 pointer-events-none opacity-0 " data-slide="3" target="_blank" href="https://olbg.info/190/L4/D/gng_carousel/ctr8227:982/none/robots" aria-hidden="true"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #8225fa"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #8225fa" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #8225fa;"><img alt="Kwiff" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=190" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 90%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10, Get £40 in Free Bets</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">New UK customers. Place a £10 real money bet at min. 2.0 odds within 5 days of deposit. Get 4 x £10 Free Bets: 1 Single, 2 Accas &amp; 1 Bet Builder (min. 3 selections each). Excludes cashout, E/W, Multis, Ineligible Markets &amp; Odds Boosts. Credited after bet settlement. 7-day expiry. T&amp;Cs apply. 18+ | GambleAware</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><!--]--></div> <!--[--><div class="flex justify-center relative z-0"><!--[--><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center  " data-dot="0" style="background-color: #323741;" aria-label="Navigate to offer 1" aria-current="true"><!--[--><!--[--><div style="background-color: #323741" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #323741;"><img alt="BetVictor" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=26" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span>£30 Free Bet</span></b></button><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center carousel-dot-inactive " data-dot="1" style="background-color: #1f7d5c;" aria-label="Navigate to offer 2" aria-current="false"><!--[--><!--[--><div style="background-color: #027b5d" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #027b5d;"><img alt="bet365" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=7" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span> Deposit Bonus</span></b></button><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center carousel-dot-inactive " data-dot="2" style="background-color: #00143c;" aria-label="Navigate to offer 3" aria-current="false"><!--[--><!--[--><div style="background-color: #00143c" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="William Hill" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span> Free Bet</span></b></button><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center carousel-dot-inactive " data-dot="3" style="background-color: #8225fa;" aria-label="Navigate to offer 4" aria-current="false"><!--[--><!--[--><div style="background-color: #8225fa" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #8225fa;"><img alt="Kwiff" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=190" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span>£40 Free Bet</span></b></button><!--]--></div><!--]--></div><!--]--><!----> <!--[--><div class="offers-carousel my-3 md:my-6  md:hidden" data-carousel="mobile"><div class="relative"><!--[--><a class="no-underline text-gng-text-grey block group relative " data-slide="0" target="_blank" href="https://olbg.info/26/L4/M/gng_carousel/ctr10434:986/none/robots" aria-hidden="false"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #323741"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #323741" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #323741;"><img alt="BetVictor" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=26" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 100%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10, get £30 in Free Bets + 100% Boost Token</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">18+ New customers only. Opt in, deposit &amp; bet £10+ on any football market (odds 2.00+) within 7 days of registration. No cash out. Get £30 in Free Bets + 1x100% Boost tokens (max £10 stakes) for selected football markets Free Bets expire in 7 days. T&amp;Cs apply.  GambleAware.org | Please gamble responsibly</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><a class="no-underline text-gng-text-grey block group absolute inset-0 pointer-events-none opacity-0 " data-slide="1" target="_blank" href="https://olbg.info/7/L4/M/gng_carousel/ctr7636:986/none/robots" aria-hidden="true"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #1f7d5c"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #027b5d" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #027b5d;"><img alt="bet365" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=7" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 94%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10 &amp; Get £30 in Free Bets for new customers at bet365.</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">Min deposit requirement. Free Bets are paid as Bet Credits and are available for use upon settlement of bets to value of qualifying deposit. Min odds, bet and payment method exclusions apply. Returns exclude Bet Credits stake. Registration required. Time limits and T&amp;Cs apply. #ad</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><a class="no-underline text-gng-text-grey block group absolute inset-0 pointer-events-none opacity-0 " data-slide="2" target="_blank" href="https://olbg.info/2/L4/M/gng_carousel/ctr10450:986/none/robots" aria-hidden="true"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #00143c"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #00143c" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="William Hill" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 86%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10, Get £30 in Free Bets</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">18+. Play Safe. From 00:01 on 18.10.2022. £30 bonus. New customers only. Minimum £10 stake on odds of 1/2 (1.5) or greater on sportsbook (excluding Virtual markets). Further terms apply. #ad</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><a class="no-underline text-gng-text-grey block group absolute inset-0 pointer-events-none opacity-0 " data-slide="3" target="_blank" href="https://olbg.info/190/L4/M/gng_carousel/ctr8227:986/none/robots" aria-hidden="true"><div class="flex pb-2.5 flex-col rounded-t-md md:flex-row md:py-3 " style="background-color: #8225fa"><div class="flex p-2 gap-3 items-center md:flex-col md:w-1/3"><!--[--><!--[--><div style="background-color: #8225fa" class="!w-2/3 border border-white/10 md:!w-full relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #8225fa;"><img alt="Kwiff" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=190" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <!--[--><div class="stars md  svelte-2wwmhl"><div class="filled" style="width: 90%"></div></div><!--]--></div> <div class="px-3 lg:w-2/3"><h3 class="text-gng-yellow font-condensed text-lg md:text-2xl leading-snug text-pretty m-0">Bet £10, Get £40 in Free Bets</h3> <div class="flex gap-3 items-start mt-1 justify-between"><div class="w-2/3"><!--[--><p class="text-white/50 text-xs leading-snug text-pretty">New UK customers. Place a £10 real money bet at min. 2.0 odds within 5 days of deposit. Get 4 x £10 Free Bets: 1 Single, 2 Accas &amp; 1 Bet Builder (min. 3 selections each). Excludes cashout, E/W, Multis, Ineligible Markets &amp; Odds Boosts. Credited after bet settlement. 7-day expiry. T&amp;Cs apply. 18+ | GambleAware</p><!--]--> <p class="text-white/50 text-[.625rem] !leading-snug !mt-1">18+. New customer offer. T&amp;Cs apply.</p></div> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                                        border-0 max-md:translate-y-1 md:w-1/3
                                        mobile:py-2 mobile:px-5
                                        group-hover:bg-gng-orange
                                        group-hover:text-white
                                        hover:bg-gng-orange
                                        hover:text-white
                                     ">CLAIM OFFER</button><!----></div></div></div></a><!--]--></div> <!--[--><div class="flex justify-center relative z-0"><!--[--><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center  " data-dot="0" style="background-color: #323741;" aria-label="Navigate to offer 1" aria-current="true"><!--[--><!--[--><div style="background-color: #323741" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #323741;"><img alt="BetVictor" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=26" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span>£30 Free Bet</span></b></button><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center carousel-dot-inactive " data-dot="1" style="background-color: #1f7d5c;" aria-label="Navigate to offer 2" aria-current="false"><!--[--><!--[--><div style="background-color: #027b5d" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #027b5d;"><img alt="bet365" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=7" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span> Deposit Bonus</span></b></button><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center carousel-dot-inactive " data-dot="2" style="background-color: #00143c;" aria-label="Navigate to offer 3" aria-current="false"><!--[--><!--[--><div style="background-color: #00143c" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="William Hill" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span> Free Bet</span></b></button><button class="flex flex-col gap-2 items-center justify-start border-none cursor-pointer duration-300 leading-tight text-xs flex-1 p-2 first:rounded-bl-md last:rounded-br-md lg:px-3 lg:flex-row lg:items-center carousel-dot-inactive " data-dot="3" style="background-color: #8225fa;" aria-label="Navigate to offer 4" aria-current="false"><!--[--><!--[--><div style="background-color: #8225fa" class="mobile:border border-white/30 border-dashed max-w-[100px] relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 "><!----><span class="bk-logo rounded " style="background-color: #8225fa;"><img alt="Kwiff" width="160" height="40" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=160x40&v=1780965318&i=190" class="inline-block " loading="lazy"></span><!----></div><!--]--><!--]--> <b class="text-white md:text-base"><span>£40 Free Bet</span></b></button><!--]--></div><!--]--></div><!--]--><!----> <!----><script>
(function() {
  if (window._carouselOffersInitialized) return;
  window._carouselOffersInitialized = true;

  // Carousel state per device
  const carousels = {};

  // Initialize each carousel container
  document.querySelectorAll('[data-carousel]').forEach(container => {
    const device = container.getAttribute('data-carousel');
    const totalOffers = container.querySelectorAll('[data-slide]').length;

    if (totalOffers === 0) return;

    carousels[device] = { currentIndex: 0, total: totalOffers, container };

    // Attach click listeners to all dot buttons
    container.querySelectorAll('[data-dot]').forEach(dot => {
      dot.addEventListener('click', function() {
        const index = parseInt(this.getAttribute('data-dot'), 10);
        if (!isNaN(index)) {
          goToOffer(device, index);
        }
      });
    });
  });

  function goToOffer(device, index) {
    const carousel = carousels[device];
    if (!carousel || index < 0 || index >= carousel.total) return;

    const container = carousel.container;
    const oldIndex = carousel.currentIndex;

    // Hide old offer slide
    const oldSlide = container.querySelector('[data-slide="' + oldIndex + '"]');
    if (oldSlide) {
      oldSlide.classList.remove('relative');
      oldSlide.classList.add('absolute', 'inset-0', 'pointer-events-none', 'opacity-0');
      oldSlide.setAttribute('aria-hidden', 'true');
    }

    // Show new offer slide
    const newSlide = container.querySelector('[data-slide="' + index + '"]');
    if (newSlide) {
      newSlide.classList.add('relative');
      newSlide.classList.remove('absolute', 'inset-0', 'pointer-events-none', 'opacity-0');
      newSlide.setAttribute('aria-hidden', 'false');
    }

    // Update dot button states
    container.querySelectorAll('[data-dot]').forEach(dot => {
      const dotIndex = parseInt(dot.getAttribute('data-dot'), 10);
      if (dotIndex === index) {
        // Active dot
        dot.classList.remove('carousel-dot-inactive');
        dot.setAttribute('aria-current', 'true');
      } else {
        // Inactive dot
        dot.classList.add('carousel-dot-inactive');
        dot.setAttribute('aria-current', 'false');
      }
    });

    carousel.currentIndex = index;
  }
})();
</script><!----><!----> <div class="flex flex-col gap-2 page card md:flex-row"><div class="flex flex-col gap-6 w-full"><!--[!--><!--]--> <!--[!--><!--]--> <!--[!--><!--]--> <div class=" restrict-content-width "><!--[--><section class="pb-4 gng-copy"><!----><html><head></head><body><h2>Your Guide to The 2027 Grand National</h2>

<p>The 2027 Grand National will be held on Saturday 10th of April at 4pm at Aintree Racecourse. <strong><br></strong></p>

<p><em>Grand National Guide</em> brings you everything you need to know about this iconic horse race. Our experienced team has been analysing the Grand National for more than 20 years, delivering in-depth insights, expert tips, and comprehensive race coverage.</p>

<p>Below, you’ll find the current market leaders. For the complete list of runners and the latest odds, visit our dedicated <a href="/grand-national-runners.php">Grand National runners&nbsp;</a>page.</p>
<div class="my-8 first:mt-0 last:mb-0"><!--[--><!--[--><div class="horses-list flex flex-col gap-4 "><!--[--><div class="card overflow-hidden flex flex-col "><div class="flex gap-4 w-full p-2 max-md:gap-3 "><div class="h-24 w-1/6 max-w-26 flex-shrink self-start p-2 flex items-start max-md:p-0  "><!--[!--><a href="/I_Am_Maximus.htm" class="w-full h-full flex items-start"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/silks/iammaximus.svg?v=1780965318203" alt="I Am Maximus silks" class="w-full object-contain max-h-24" onerror="this.__e=event"></a><!--]--></div> <div class="flex-1 flex flex-col min-w-0"><!--[!--><h3 class="text-lg md:text-xl m-0 font-bold truncate"><a href="/I_Am_Maximus.htm" class="no-underline hover:underline">I Am Maximus</a></h3><!--]--> <div class="flex items-center flex-wrap gap-y-1.5 text-sm text-gng-text-dark gap-x-2 md:gap-x-3"><!--[!--><!--[!--><!--[!--><span>Age: <strong>0</strong></span> <span>Weight: <strong>0-0</strong></span> <span>No: <strong>0</strong></span> <span class="inline-flex items-center"><div class="stars sm  svelte-2wwmhl"><div class="filled" style="width: 100%"></div></div><!----></span><!--]--><!--]--><!--]--></div> <!--[--><div><a href="/I_Am_Maximus.htm" class="text-sm text-gng-blue hover:underline">View Profile</a></div><!--]--></div> <div class="flex-shrink-0 flex items-start gap-2 md:hidden "><a href="https://olbg.info/2/L4/M/gng_horses_list/I%20Am%20Maximus/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #00143c" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">12-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----> <div class="flex-shrink-0 flex items-start gap-2 max-md:hidden  "><a href="https://olbg.info/2/L4/D/gng_horses_list/I%20Am%20Maximus/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #00143c" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">12-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----></div> <!--[!--><!--]--> <!--[--><div class="sum bg-gng-howto-bg px-4 py-3 border-t border-gng-orange/50"><div class=" md:pl-[110px] line-clamp-2 "><!----><p>Became an Aintree legend when winning his second Grand National last year. Can he emulate Red Rum and win for the third time in 2027?</p><!----></div> <!--[!--><!--]--></div><!--]--></div><div class="card overflow-hidden flex flex-col "><div class="flex gap-4 w-full p-2 max-md:gap-3 "><div class="h-24 w-1/6 max-w-26 flex-shrink self-start p-2 flex items-start max-md:p-0  "><!--[!--><a href="/Jordans.htm" class="w-full h-full flex items-start"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/silks/jordans.svg?v=1780965318203" alt="Jordans silks" class="w-full object-contain max-h-24" onerror="this.__e=event"></a><!--]--></div> <div class="flex-1 flex flex-col min-w-0"><!--[!--><h3 class="text-lg md:text-xl m-0 font-bold truncate"><a href="/Jordans.htm" class="no-underline hover:underline">Jordans</a></h3><!--]--> <div class="flex items-center flex-wrap gap-y-1.5 text-sm text-gng-text-dark gap-x-2 md:gap-x-3"><!--[!--><!--[!--><!--[!--><span>Age: <strong>7</strong></span> <span>Weight: <strong>0-0</strong></span> <span>No: <strong>0</strong></span> <span class="inline-flex items-center"><div class="stars sm  svelte-2wwmhl"><div class="filled" style="width: 80%"></div></div><!----></span><!--]--><!--]--><!--]--></div> <!--[--><div><a href="/Jordans.htm" class="text-sm text-gng-blue hover:underline">View Profile</a></div><!--]--></div> <div class="flex-shrink-0 flex items-start gap-2 md:hidden "><a href="https://olbg.info/77/L4/M/gng_horses_list/Jordans/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #147b45" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #147b45;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=77" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">16-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----> <div class="flex-shrink-0 flex items-start gap-2 max-md:hidden  "><a href="https://olbg.info/77/L4/D/gng_horses_list/Jordans/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #147b45" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #147b45;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=77" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">16-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----></div> <!--[!--><!--]--> <!--[--><div class="sum bg-gng-howto-bg px-4 py-3 border-t border-gng-orange/50"><div class=" md:pl-[110px] line-clamp-2 "><!----><p>Just ran out of gas last year when finishing third</p><!----></div> <!--[!--><!--]--></div><!--]--></div><div class="card overflow-hidden flex flex-col "><div class="flex gap-4 w-full p-2 max-md:gap-3 "><div class="h-24 w-1/6 max-w-26 flex-shrink self-start p-2 flex items-start max-md:p-0  "><!--[!--><a href="/Soldier_In_Milan.htm" class="w-full h-full flex items-start"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/silks/soldierinmilan.svg?v=1780965318203" alt="Soldier In Milan silks" class="w-full object-contain max-h-24" onerror="this.__e=event"></a><!--]--></div> <div class="flex-1 flex flex-col min-w-0"><!--[!--><h3 class="text-lg md:text-xl m-0 font-bold truncate"><a href="/Soldier_In_Milan.htm" class="no-underline hover:underline">Soldier In Milan</a></h3><!--]--> <div class="flex items-center flex-wrap gap-y-1.5 text-sm text-gng-text-dark gap-x-2 md:gap-x-3"><!--[!--><!--[!--><!--[!--><span>Age: <strong>7</strong></span> <span>Weight: <strong>0-0</strong></span> <span>No: <strong>0</strong></span> <span class="inline-flex items-center"><div class="stars sm  svelte-2wwmhl"><div class="filled" style="width: 80%"></div></div><!----></span><!--]--><!--]--><!--]--></div> <!--[--><div><a href="/Soldier_In_Milan.htm" class="text-sm text-gng-blue hover:underline">View Profile</a></div><!--]--></div> <div class="flex-shrink-0 flex items-start gap-2 md:hidden "><a href="https://olbg.info/7/L4/M/gng_horses_list/Soldier%20In%20Milan/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #027b5d" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #027b5d;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=7" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">16-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----> <div class="flex-shrink-0 flex items-start gap-2 max-md:hidden  "><a href="https://olbg.info/7/L4/D/gng_horses_list/Soldier%20In%20Milan/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #027b5d" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #027b5d;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=7" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">16-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----></div> <!--[!--><!--]--> <!--[--><div class="sum bg-gng-howto-bg px-4 py-3 border-t border-gng-orange/50"><div class=" md:pl-[110px] line-clamp-2 "><!----><p>Facile winner of last year's Irish National</p><!----></div> <!--[!--><!--]--></div><!--]--></div><div class="card overflow-hidden flex flex-col "><div class="flex gap-4 w-full p-2 max-md:gap-3 "><div class="h-24 w-1/6 max-w-26 flex-shrink self-start p-2 flex items-start max-md:p-0  "><!--[!--><a href="/Iroko.htm" class="w-full h-full flex items-start"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/silks/iroko.svg?v=1780965318203" alt="Iroko silks" class="w-full object-contain max-h-24" onerror="this.__e=event"></a><!--]--></div> <div class="flex-1 flex flex-col min-w-0"><!--[!--><h3 class="text-lg md:text-xl m-0 font-bold truncate"><a href="/Iroko.htm" class="no-underline hover:underline">Iroko</a></h3><!--]--> <div class="flex items-center flex-wrap gap-y-1.5 text-sm text-gng-text-dark gap-x-2 md:gap-x-3"><!--[!--><!--[!--><!--[!--><span>Age: <strong>0</strong></span> <span>Weight: <strong>0-0</strong></span> <span>No: <strong>0</strong></span> <span class="inline-flex items-center"><div class="stars sm  svelte-2wwmhl"><div class="filled" style="width: 60%"></div></div><!----></span><!--]--><!--]--><!--]--></div> <!--[--><div><a href="/Iroko.htm" class="text-sm text-gng-blue hover:underline">View Profile</a></div><!--]--></div> <div class="flex-shrink-0 flex items-start gap-2 md:hidden "><a href="https://olbg.info/58/L4/M/gng_horses_list/Iroko/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #011a39" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #011a39;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=58" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">16-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----> <div class="flex-shrink-0 flex items-start gap-2 max-md:hidden  "><a href="https://olbg.info/58/L4/D/gng_horses_list/Iroko/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #011a39" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #011a39;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=58" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">16-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----></div> <!--[!--><!--]--> <!--[--><div class="sum bg-gng-howto-bg px-4 py-3 border-t border-gng-orange/50"><div class=" md:pl-[110px] line-clamp-2 "><!----><p>Finished fourth two year ago and runner-up last year. Can he go one better in 2027?</p><!----></div> <!--[!--><!--]--></div><!--]--></div><div class="card overflow-hidden flex flex-col "><div class="flex gap-4 w-full p-2 max-md:gap-3 "><div class="h-24 w-1/6 max-w-26 flex-shrink self-start p-2 flex items-start max-md:p-0  "><!--[!--><a href="/Grangeclare_West.htm" class="w-full h-full flex items-start"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/silks/grangeclarewest.svg?v=1780965318203" alt="Grangeclare West silks" class="w-full object-contain max-h-24" onerror="this.__e=event"></a><!--]--></div> <div class="flex-1 flex flex-col min-w-0"><!--[!--><h3 class="text-lg md:text-xl m-0 font-bold truncate"><a href="/Grangeclare_West.htm" class="no-underline hover:underline">Grangeclare West</a></h3><!--]--> <div class="flex items-center flex-wrap gap-y-1.5 text-sm text-gng-text-dark gap-x-2 md:gap-x-3"><!--[!--><!--[!--><!--[!--><span>Age: <strong>10</strong></span> <span>Weight: <strong>0-0</strong></span> <span>No: <strong>0</strong></span> <span class="inline-flex items-center"><div class="stars sm  svelte-2wwmhl"><div class="filled" style="width: 80%"></div></div><!----></span><!--]--><!--]--><!--]--></div> <!--[--><div><a href="/Grangeclare_West.htm" class="text-sm text-gng-blue hover:underline">View Profile</a></div><!--]--></div> <div class="flex-shrink-0 flex items-start gap-2 md:hidden "><a href="https://olbg.info/26/L4/M/gng_horses_list/Grangeclare%20West/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #323741" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #323741;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=26" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">25-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----> <div class="flex-shrink-0 flex items-start gap-2 max-md:hidden  "><a href="https://olbg.info/26/L4/D/gng_horses_list/Grangeclare%20West/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #323741" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #323741;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=26" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">25-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----></div> <!--[!--><!--]--> <!--[--><div class="sum bg-gng-howto-bg px-4 py-3 border-t border-gng-orange/50"><div class=" md:pl-[110px] line-clamp-2 "><!----><p>Third two seasons ago but fell at the first fence last year</p><!----></div> <!--[!--><!--]--></div><!--]--></div><div class="card overflow-hidden flex flex-col "><div class="flex gap-4 w-full p-2 max-md:gap-3 "><div class="h-24 w-1/6 max-w-26 flex-shrink self-start p-2 flex items-start max-md:p-0  "><!--[!--><a href="/Johnnywho.htm" class="w-full h-full flex items-start"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/gng/themes/gng-1/assets/images/silks/johnnywho.svg?v=1780965318203" alt="Johnnywho silks" class="w-full object-contain max-h-24" onerror="this.__e=event"></a><!--]--></div> <div class="flex-1 flex flex-col min-w-0"><!--[!--><h3 class="text-lg md:text-xl m-0 font-bold truncate"><a href="/Johnnywho.htm" class="no-underline hover:underline">Johnnywho</a></h3><!--]--> <div class="flex items-center flex-wrap gap-y-1.5 text-sm text-gng-text-dark gap-x-2 md:gap-x-3"><!--[!--><!--[!--><!--[!--><span>Age: <strong>9</strong></span> <span>Weight: <strong>0-0</strong></span> <span>No: <strong>0</strong></span> <span class="inline-flex items-center"><div class="stars sm  svelte-2wwmhl"><div class="filled" style="width: 80%"></div></div><!----></span><!--]--><!--]--><!--]--></div> <!--[--><div><a href="/Johnnywho.htm" class="text-sm text-gng-blue hover:underline">View Profile</a></div><!--]--></div> <div class="flex-shrink-0 flex items-start gap-2 md:hidden "><a href="https://olbg.info/2/L4/M/gng_horses_list/Johnnywho/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #00143c" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">25-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----> <div class="flex-shrink-0 flex items-start gap-2 max-md:hidden  "><a href="https://olbg.info/2/L4/D/gng_horses_list/Johnnywho/1/1" target="_blank" rel="noopener noreferrer sponsored" class="flex items-stretch gap-2 text-gng-text-dark rounded-lg px-4 py-2 transition-colors no-underline hover:no-underline max-md:flex-col max-md:p-0 group/cta"><!--[--><div style="background-color: #00143c" class=" relative rounded flex items-center justify-center p-1 text-white transition ease-in-out duration-50 a-gloss"><!----><span class="bk-logo rounded " style="background-color: #00143c;"><img alt="" width="96" height="24" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=96x24&amp;v=1780965318&amp;i=2" class="inline-block " loading="lazy"></span><!----></div><!--]--><!----> <span class="text-lg font-bold border rounded px-2 border-gng-yellow-gold-dark flex items-center min-w-[100px] justify-center max-md:text-sm max-md:min-w-[50px]">25-1</span> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
				group-hover/cta:bg-gng-blue
				group-hover/cta:border-transparent
				group-hover/cta:text-white
			 ">See Offer</button><!----></a></div><!----></div> <!--[!--><!--]--> <!--[--><div class="sum bg-gng-howto-bg px-4 py-3 border-t border-gng-orange/50"><div class=" md:pl-[110px] line-clamp-2 "><!----><p>Ran a great race to finish fourth last year</p><!----></div> <!--[!--><!--]--></div><!--]--></div><!--]--></div> <!--[--><!----> <div data-sidebar-content="false" class="@container"><!--[--><div class="offers-list
        flex flex-col gap-4
        @lg:grid @lg:grid-cols-2 @lg:gap-4
        @4xl:grid-cols-4
        mt-4
        lg:!hidden"><!--[--><a href="https://olbg.info/26/L4/M/gng_horses_list/ctr10434:985/none/robots" target="_blank" rel="nofollow" class="offer group/offer relative flex flex-col justify-start rounded-md overflow-hidden gap-1.5 p-3 no-underline hover:no-underline max-md:items-center" style="background-color: #323741; color: #ffffff; --offer-bg: #323741; --offer-text: #ffffff;"><header class="offer-header p-3 pt-0 cursor-pointer transition-opacity select-none flex flex-col items-center text-center max-w-[25ch] mx-auto gap-1.5 @xs:max-w-none" role="button" tabindex="0"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=120x30&amp;v=1681737028&amp;i=26" alt="BetVictor" width="120" height="30" class="rounded my-2"> <h3 class="text-lg leading-snug font-bold m-0 @xs:text-2xl @lg:text-xl ">Bet £10, get £30 in Free Bets + 100% Boost Token</h3></header> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                            text-sm border-0 py-2
                            max-md:!w-fit
                            max-md:px-10
                        	group-hover/offer:!text-white
                        	group-hover/offer:!bg-gng-orange
                            group-hover/offer:border-transparent
                        	hover:!bg-gng-orange
                            hover:border-transparent
                     ">CLAIM NOW</button><!----> <div class="border-t border-dashed border-white/30 pt-3 mt-3"><p class="offer-body text-[.6875rem] leading-snug opacity-85 mb-0 ">18+ New customers only. Opt in, deposit &amp; bet £10+ on any football market (odds 2.00+) within 7 days of registration. No cash out. Get £30 in Free Bets + 1x100% Boost tokens (max £10 stakes) for selected football markets Free Bets expire in 7 days. T&amp;Cs apply.  GambleAware.org | Please gamble responsibly</p> <p class="text-[.6875rem] opacity-60">18+, begambleaware.org, T&amp;Cs Apply</p></div></a><a href="https://olbg.info/7/L4/M/gng_horses_list/ctr7636:985/none/robots" target="_blank" rel="nofollow" class="offer group/offer relative flex flex-col justify-start rounded-md overflow-hidden gap-1.5 p-3 no-underline hover:no-underline max-md:items-center" style="background-color: #027b5d; color: #ffffff; --offer-bg: #027b5d; --offer-text: #ffffff;"><header class="offer-header p-3 pt-0 cursor-pointer transition-opacity select-none flex flex-col items-center text-center max-w-[25ch] mx-auto gap-1.5 @xs:max-w-none" role="button" tabindex="0"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=120x30&amp;v=1681737028&amp;i=7" alt="bet365" width="120" height="30" class="rounded my-2"> <h3 class="text-lg leading-snug font-bold m-0 @xs:text-2xl @lg:text-xl ">Bet £10 &amp; Get £30 in Free Bets for new customers at bet365.</h3></header> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                            text-sm border-0 py-2
                            max-md:!w-fit
                            max-md:px-10
                        	group-hover/offer:!text-white
                        	group-hover/offer:!bg-gng-orange
                            group-hover/offer:border-transparent
                        	hover:!bg-gng-orange
                            hover:border-transparent
                     ">CLAIM NOW</button><!----> <div class="border-t border-dashed border-white/30 pt-3 mt-3"><p class="offer-body text-[.6875rem] leading-snug opacity-85 mb-0 ">Min deposit requirement. Free Bets are paid as Bet Credits and are available for use upon settlement of bets to value of qualifying deposit. Min odds, bet and payment method exclusions apply. Returns exclude Bet Credits stake. Registration required. Time limits and T&amp;Cs apply. #ad</p> <p class="text-[.6875rem] opacity-60">18+, begambleaware.org, T&amp;Cs Apply</p></div></a><!--]--></div><!--]--></div><!----><!--]--><!--]--><!--]--></div>

<h2>How to Choose Your Horses for the 2027 Grand National&nbsp;</h2>

<p>Alongside detailed information on every runner, we offer a variety of approaches to help you decide on your Grand National selections. Our experts boast an impressive tipping record — including a remarkable 50/1 winner.&nbsp;</p>

<p>However, if you prefer to make your own picks, we’ve also outlined several enjoyable and strategic methods to help you choose your horses with confidence.</p>
<div class="my-8 first:mt-0 last:mb-0"><!--[--><div class="@container home-tools-container grid grid-cols-1 gap-4 "><!--[--><div class="card border-gng-orange"><h4 class="bg-gng-orange text-white font-bold py-1.5 px-4 flex items-center justify-center gap-2 text-base "><!----><svg width="25" height="25" viewBox="0 0 30 30" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><path d="M22.7783 4C23.5559 4.0002 24.1387 4.58369 24.1387 5.36133V7.11133H27.9307C28.5139 7.11133 28.9999 7.5974 29 8.18066V11.3896C28.9997 13.431 27.0557 15.0839 24.7227 15.084H24.042C23.4585 18.7783 20.1526 21.5977 16.0693 21.5977V25.9727H18.208C18.7913 25.9727 19.2783 26.4587 19.2783 27.042C19.2783 27.6253 18.7913 28.1113 18.208 28.1113H11.6943C11.1111 28.1112 10.625 27.6253 10.625 27.042C10.625 26.4587 11.1111 25.9728 11.6943 25.9727H13.9307V21.5977C9.94462 21.5977 6.54147 18.7783 5.95801 15.084H5.27734C2.94438 15.0838 1.0003 13.431 1 11.3896V8.18066C1.00009 7.59744 1.4861 7.11139 2.06934 7.11133H5.86133V5.36133C5.86135 4.58356 6.44489 4 7.22266 4H22.7783ZM15.0625 7.88867C14.7676 7.88888 14.6752 8.14289 14.6719 8.15234L13.5586 10.2021L11.123 10.583C11.123 10.583 10.8229 10.5827 10.7324 10.8457C10.6734 11.0468 10.9034 11.2201 10.9121 11.2266L12.5664 12.8955L12.1758 15.1787C12.1758 15.1787 12.0854 15.4425 12.2959 15.5889C12.5064 15.7645 12.7773 15.5889 12.7773 15.5889L15.0928 14.623L17.4092 15.5889C17.4187 15.5949 17.6829 15.7611 17.8896 15.5889C18.1002 15.4132 18.0107 15.1787 18.0107 15.1787L17.6191 12.8955L19.2734 11.2266C19.2769 11.2243 19.5438 11.0491 19.4541 10.8164C19.3637 10.5532 19.0625 10.5537 19.0625 10.5537L16.627 10.1436L15.4541 8.15234C15.4513 8.14434 15.3585 7.88867 15.0625 7.88867ZM3.04199 11.292C3.04202 12.2641 4.11086 12.9442 5.27734 12.9443H5.76367V9.15332H3.04199V11.292ZM24.1387 12.9443H24.7227C25.9864 12.9442 26.959 12.1669 26.959 11.292H26.8613V9.15332H24.1387V12.9443Z"></path></svg><!----> Winner Predictor</h4> <div class="p-3 pt-1"><p class="text-gng-text-dark mb-4 text-center">Choose the expected ground on the day and see what our statistical tool predicts</p> <!--[--><h5 class="font-semibold text-xl !my-6 !mt-4 text-center text-gng-text-dark">Expected Ground</h5> <div class="relative pb-2"><div class="relative grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-6 gap-6 lg:gap-3"><!--[--><div class="flex flex-col items-center relative"><div class="absolute top-[20px] left-0 right-0 h-6 bg-green-100 rounded-full z-0"></div> <div class="w-full h-12 mb-2 bg-no-repeat bg-center relative z-1" style="background-image: url('/sk-assets/images/winner-predictor/ground_scale_large.webp?v=1780965318203'); background-position-y: 0px;"></div> <a href="/rating/overall/1" class="ground-btn w-full py-2.5 px-4 text-center text-sm font-semibold rounded-full border border-gng-green bg-green-50 text-gng-green hover:no-underline hover:bg-gng-green hover:text-white group relative lg:text-sm lg:px-2"><span class="hidden group-hover:block absolute -top-2 left-1/2 -translate-x-1/2 w-0 h-0 border-l-[7px] border-l-transparent border-r-[7px] border-r-transparent border-b-[10px] border-b-gng-green"></span> Firm</a></div><div class="flex flex-col items-center relative"><div class="absolute top-[20px] left-0 right-0 h-6 bg-green-100 rounded-full z-0"></div> <div class="w-full h-12 mb-2 bg-no-repeat bg-center relative z-1" style="background-image: url('/sk-assets/images/winner-predictor/ground_scale_large.webp?v=1780965318203'); background-position-y: -80px;"></div> <a href="/rating/overall/2" class="ground-btn w-full py-2.5 px-4 text-center text-sm font-semibold rounded-full border border-gng-green bg-green-50 text-gng-green hover:no-underline hover:bg-gng-green hover:text-white group relative lg:text-sm lg:px-2"><span class="hidden group-hover:block absolute -top-2 left-1/2 -translate-x-1/2 w-0 h-0 border-l-[7px] border-l-transparent border-r-[7px] border-r-transparent border-b-[10px] border-b-gng-green"></span> Good to Firm</a></div><div class="flex flex-col items-center relative"><div class="absolute top-[20px] left-0 right-0 h-6 bg-green-100 rounded-full z-0"></div> <div class="w-full h-12 mb-2 bg-no-repeat bg-center relative z-1" style="background-image: url('/sk-assets/images/winner-predictor/ground_scale_large.webp?v=1780965318203'); background-position-y: -160px;"></div> <a href="/rating/overall/3" class="ground-btn w-full py-2.5 px-4 text-center text-sm font-semibold rounded-full border border-gng-green bg-green-50 text-gng-green hover:no-underline hover:bg-gng-green hover:text-white group relative lg:text-sm lg:px-2"><span class="hidden group-hover:block absolute -top-2 left-1/2 -translate-x-1/2 w-0 h-0 border-l-[7px] border-l-transparent border-r-[7px] border-r-transparent border-b-[10px] border-b-gng-green"></span> Good</a></div><div class="flex flex-col items-center relative"><div class="absolute top-[20px] left-0 right-0 h-6 bg-green-100 rounded-full z-0"></div> <div class="w-full h-12 mb-2 bg-no-repeat bg-center relative z-1" style="background-image: url('/sk-assets/images/winner-predictor/ground_scale_large.webp?v=1780965318203'); background-position-y: -240px;"></div> <a href="/rating/overall/4" class="ground-btn w-full py-2.5 px-4 text-center text-sm font-semibold rounded-full border border-gng-green bg-green-50 text-gng-green hover:no-underline hover:bg-gng-green hover:text-white group relative lg:text-sm lg:px-2"><span class="hidden group-hover:block absolute -top-2 left-1/2 -translate-x-1/2 w-0 h-0 border-l-[7px] border-l-transparent border-r-[7px] border-r-transparent border-b-[10px] border-b-gng-green"></span> Good to Soft</a></div><div class="flex flex-col items-center relative"><div class="absolute top-[20px] left-0 right-0 h-6 bg-green-100 rounded-full z-0"></div> <div class="w-full h-12 mb-2 bg-no-repeat bg-center relative z-1" style="background-image: url('/sk-assets/images/winner-predictor/ground_scale_large.webp?v=1780965318203'); background-position-y: -320px;"></div> <a href="/rating/overall/5" class="ground-btn w-full py-2.5 px-4 text-center text-sm font-semibold rounded-full border border-gng-green bg-green-50 text-gng-green hover:no-underline hover:bg-gng-green hover:text-white group relative lg:text-sm lg:px-2"><span class="hidden group-hover:block absolute -top-2 left-1/2 -translate-x-1/2 w-0 h-0 border-l-[7px] border-l-transparent border-r-[7px] border-r-transparent border-b-[10px] border-b-gng-green"></span> Soft</a></div><div class="flex flex-col items-center relative"><div class="absolute top-[20px] left-0 right-0 h-6 bg-green-100 rounded-full z-0"></div> <div class="w-full h-12 mb-2 bg-no-repeat bg-center relative z-1" style="background-image: url('/sk-assets/images/winner-predictor/ground_scale_large.webp?v=1780965318203'); background-position-y: -400px;"></div> <a href="/rating/overall/6" class="ground-btn w-full py-2.5 px-4 text-center text-sm font-semibold rounded-full border border-gng-green bg-green-50 text-gng-green hover:no-underline hover:bg-gng-green hover:text-white group relative lg:text-sm lg:px-2"><span class="hidden group-hover:block absolute -top-2 left-1/2 -translate-x-1/2 w-0 h-0 border-l-[7px] border-l-transparent border-r-[7px] border-r-transparent border-b-[10px] border-b-gng-green"></span> Heavy</a></div><!--]--></div></div><!--]--></div></div><div class="card border-gng-green"><h4 class="bg-gng-green text-white font-bold py-1.5 px-4 flex items-center justify-center gap-2 text-base "><!---->
                <span class="rotate-30 mr-0.5">
                <svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 30 30" fill="currentColor"><path d="M25.33.5H4.61C2.33.5.47,2.36.47,4.65v20.71c0,2.29,1.86,4.14,4.14,4.14h20.71c2.29,0,4.14-1.86,4.14-4.14V4.65c0-2.29-1.86-4.14-4.14-4.14ZM8.75,23.29c-1.14,0-2.07-.93-2.07-2.07s.93-2.07,2.07-2.07,2.07.93,2.07,2.07-.93,2.07-2.07,2.07ZM8.75,10.86c-1.14,0-2.07-.93-2.07-2.07s.93-2.07,2.07-2.07,2.07.93,2.07,2.07-.93,2.07-2.07,2.07ZM14.97,17.07c-1.14,0-2.07-.93-2.07-2.07s.93-2.07,2.07-2.07,2.07.93,2.07,2.07-.93,2.07-2.07,2.07ZM21.18,23.29c-1.14,0-2.07-.93-2.07-2.07s.93-2.07,2.07-2.07,2.07.93,2.07,2.07-.93,2.07-2.07,2.07ZM21.18,10.86c-1.14,0-2.07-.93-2.07-2.07s.93-2.07,2.07-2.07,2.07.93,2.07,2.07-.93,2.07-2.07,2.07Z"></path></svg>
                </span>
                <!----> Pinstickers Guide</h4> <div class="p-3 pt-1"><p class="text-gng-text-dark mb-4 text-center">Fun alternative ways to pick your horse for the national</p> <!--[!--><!--[--><div class="grid @xl:grid-cols-2 @4xl:grid-cols-4 gap-3 @4xl:gap-5 "><!--[--><div class="tools-card bg-pin-purple-bg border-pin-purple-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="pin-card-image mx-auto w-[145px] h-[130px] md:w-[190px] md:h-[170px] bg-no-repeat" style="--mobile-pos: 0px; --desktop-pos: 0px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Lucky Dip</h5> <!--[--><a id="lucky-dip-action" href="#" class="inline-flex bg-pin-purple-btn hover:bg-pin-purple-btn-hover active:bg-pin-purple-btn-active hover:no-underline text-white text-sm font-medium py-1.5 px-4 rounded-full items-center gap-2 cursor-pointer !font-bold !text-base z-1">View <span class="w-4 h-4 bg-white rounded-full inline-block flex items-center justify-center text-pin-purple-btn"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="4px" stroke="currentColor" class="w-full p-0.5 translate-x-[0.5px] h-full -rotate-90 text-pin-purple-btn" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg></span></a><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><div class="tools-card bg-pin-pink-bg border-pin-pink-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="pin-card-image mx-auto w-[145px] h-[130px] md:w-[190px] md:h-[170px] bg-no-repeat" style="--mobile-pos: -260px; --desktop-pos: -340px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Your Star Sign</h5> <!--[!--><!--[--><div id="starsign-action" class="tools-dropdown relative inline-block z-2"><!----><button type="button" class="bg-pin-pink-btn hover:bg-pin-pink-btn-hover active:bg-pin-pink-btn-active text-white text-sm font-medium py-1.5 px-4 rounded-full flex items-center gap-2 cursor-pointer !font-bold !text-base" onclick="event.stopPropagation(); var menu = this.nextElementSibling; var isOpen = !menu.classList.contains('hidden'); var allMenus = document.querySelectorAll('.tools-dropdown-menu'); for (var i = 0; i < allMenus.length; i++) allMenus[i].classList.add('hidden'); if (!isOpen) menu.classList.remove('hidden');">
				View

				<span class="w-4 h-4 rounded-full inline-block flex justify-center items-center">
					<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="3px" stroke="currentColor" class="w-full h-full translate-y-px" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg>
				</span>
			</button>
			<!----> <ul class="tools-dropdown-menu p-0 hidden absolute border border-c-border z-10 mt-1 w-56 bg-white rounded-md shadow-lg max-h-48 overflow-auto left-1/2 -translate-x-1/2 text-left"><!--[--><li class="m-0 p-0"><a href="/pin/starsign/capricorn" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-pink-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-pink-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Capricorn</a></li><li class="m-0 p-0"><a href="/pin/starsign/pisces" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-pink-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-pink-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Pisces</a></li><li class="m-0 p-0"><a href="/pin/starsign/taurus" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-pink-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-pink-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Taurus</a></li><!--]--></ul></div><!--]--><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><div class="tools-card bg-pin-peach-bg border-pin-peach-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="pin-card-image mx-auto w-[145px] h-[130px] md:w-[190px] md:h-[170px] bg-no-repeat" style="--mobile-pos: -520px; --desktop-pos: -680px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Favourite Colour</h5> <!--[!--><!--[--><div id="colour-action" class="tools-dropdown relative inline-block z-2"><!----><button type="button" class="bg-pin-peach-btn hover:bg-pin-peach-btn-hover active:bg-pin-peach-btn-active text-white text-sm font-medium py-1.5 px-4 rounded-full flex items-center gap-2 cursor-pointer !font-bold !text-base" onclick="event.stopPropagation(); var menu = this.nextElementSibling; var isOpen = !menu.classList.contains('hidden'); var allMenus = document.querySelectorAll('.tools-dropdown-menu'); for (var i = 0; i < allMenus.length; i++) allMenus[i].classList.add('hidden'); if (!isOpen) menu.classList.remove('hidden');">
				View

				<span class="w-4 h-4 rounded-full inline-block flex justify-center items-center">
					<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="3px" stroke="currentColor" class="w-full h-full translate-y-px" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg>
				</span>
			</button>
			<!----> <ul class="tools-dropdown-menu p-0 hidden absolute border border-c-border z-10 mt-1 w-56 bg-white rounded-md shadow-lg max-h-48 overflow-auto left-1/2 -translate-x-1/2 text-left"><!--[--><li class="m-0 p-0"><a href="/pin/colour/black" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-orange-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-peach-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Black</a></li><li class="m-0 p-0"><a href="/pin/colour/blue" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-orange-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-peach-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Blue</a></li><li class="m-0 p-0"><a href="/pin/colour/green" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-orange-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-peach-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Green</a></li><li class="m-0 p-0"><a href="/pin/colour/orange" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-orange-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-peach-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Orange</a></li><li class="m-0 p-0"><a href="/pin/colour/red" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-orange-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-peach-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Red</a></li><!--]--></ul></div><!--]--><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><div class="tools-card bg-pin-blue-bg border-pin-blue-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="pin-card-image mx-auto w-[145px] h-[130px] md:w-[190px] md:h-[170px] bg-no-repeat" style="--mobile-pos: -780px; --desktop-pos: -1020px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Where You Live</h5> <!--[!--><!--[--><div id="location-action" class="tools-dropdown relative inline-block z-2"><!----><button type="button" class="bg-pin-blue-btn hover:bg-pin-blue-btn-hover active:bg-pin-blue-btn-active text-white text-sm font-medium py-1.5 px-4 rounded-full flex items-center gap-2 cursor-pointer !font-bold !text-base" onclick="event.stopPropagation(); var menu = this.nextElementSibling; var isOpen = !menu.classList.contains('hidden'); var allMenus = document.querySelectorAll('.tools-dropdown-menu'); for (var i = 0; i < allMenus.length; i++) allMenus[i].classList.add('hidden'); if (!isOpen) menu.classList.remove('hidden');">
				View

				<span class="w-4 h-4 rounded-full inline-block flex justify-center items-center">
					<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="3px" stroke="currentColor" class="w-full h-full translate-y-px" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg>
				</span>
			</button>
			<!----> <ul class="tools-dropdown-menu p-0 hidden absolute border border-c-border z-10 mt-1 w-56 bg-white rounded-md shadow-lg max-h-48 overflow-auto left-1/2 -translate-x-1/2 text-left"><!--[--><li class="m-0 p-0"><a href="/pin/location/england-midlands" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-blue-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-blue-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> England - Midlands</a></li><li class="m-0 p-0"><a href="/pin/location/england-north-west" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-blue-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-blue-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> England - North West</a></li><li class="m-0 p-0"><a href="/pin/location/england-south-west" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-blue-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-blue-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> England - South West</a></li><li class="m-0 p-0"><a href="/pin/location/ireland" class="block font-bold px-3 py-2 text-sm text-gng-text-dark hover:no-underline hover:bg-blue-50 flex items-center justify-start gap-2"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 text-pin-blue-btn !w-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----> Ireland</a></li><!--]--></ul></div><!--]--><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><!--]--></div> <!----><script>
    let RANDOM_HORSE_URL = null;
    const HORSES = [{"name":"Nick Rockett","slug":"Nick_Rockett","url":"/pin/dip/nick-rockett"},{"name":"Panic Attack","slug":"Panic_Attack","url":"/pin/dip/panic-attack"},{"name":"Jagwar","slug":"Jagwar","url":"/pin/dip/jagwar"},{"name":"Grangeclare West","slug":"Grangeclare_West","url":"/pin/dip/grangeclare-west"},{"name":"Johnnywho","slug":"Johnnywho","url":"/pin/dip/johnnywho"},{"name":"Jordans","slug":"Jordans","url":"/pin/dip/jordans"},{"name":"Soldier In Milan","slug":"Soldier_In_Milan","url":"/pin/dip/soldier-in-milan"},{"name":"Iroko","slug":"Iroko","url":"/pin/dip/iroko"},{"name":"I Am Maximus","slug":"I_Am_Maximus","url":"/pin/dip/i-am-maximus"}];

    function updateRandomHorse() {
      if (HORSES.length > 0) {

        const targetElementId = 'lucky-dip-action';
        const randomIndex = Math.floor(Math.random() * HORSES.length);
        const randomHorse = HORSES[randomIndex];

        // update URL of target element if specified
        if (targetElementId) {
            const el = document.getElementById('lucky-dip-action');
            if (el) {
              el.href = randomHorse.url;
            }
        }

        RANDOM_HORSE_URL = randomHorse.url;
      }
    }

    // Update random horse after delay to ensure client-side randomness
    setTimeout(updateRandomHorse, 1000);
    setTimeout(updateRandomHorse, 2000);
  </script><!----><!--]--><!--]--></div></div><div class="card border-gng-blue"><h4 class="bg-gng-blue text-white font-bold py-1.5 px-4 flex items-center justify-center gap-2 text-base "><!----><svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 30 30" fill="currentColor"><path d="M12.8,8.3h14.6V6.2H12.8C12.3,3.3,9.8,1,6.7,1C3.3,1,0.5,3.8,0.5,7.2s2.8,6.2,6.2,6.2C9.8,13.4,12.3,11.2,12.8,8.3z M2.6,7.2c0-2.3,1.9-4.1,4.1-4.1s4.1,1.9,4.1,4.1S9,11.4,6.7,11.4S2.6,9.5,2.6,7.2z"></path><path d="M23.3,16.6c-3.1,0-5.6,2.2-6.1,5.2H2.6v2.1h14.6c0.5,2.9,3,5.2,6.1,5.2c3.4,0,6.2-2.8,6.2-6.2S26.7,16.6,23.3,16.6z M23.3,26.9c-2.3,0-4.1-1.9-4.1-4.1s1.9-4.1,4.1-4.1s4.1,1.9,4.1,4.1S25.6,26.9,23.3,26.9z"></path></svg><!----> Form Tool</h4> <div class="p-3 pt-1"><p class="text-gng-text-dark mb-4 text-center">Filter the runners based on key form characteristics starting with one of the below</p> <!--[!--><!--[!--><!--[--><div class="grid @xl:grid-cols-2 gap-3 "><!--[--><div class="tools-card bg-pin-blue-bg border-pin-blue-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="form-tool-image mx-auto w-[150px] h-[130px] bg-no-repeat md:scale-[115%] md:my-3" style="--mobile-pos: 0px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Has run in 10+ chases</h5> <!--[--><a id="chase-runs-action" href="/grand-national-form/chase-runs" class="inline-flex bg-pin-blue-btn hover:bg-pin-blue-btn-hover active:bg-pin-blue-btn-active hover:no-underline text-white text-sm font-medium py-1.5 px-4 rounded-full items-center gap-2 cursor-pointer !font-bold !text-base z-1">View <span class="w-4 h-4 bg-white rounded-full inline-block flex items-center justify-center text-pin-blue-btn"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="4px" stroke="currentColor" class="w-full p-0.5 translate-x-[0.5px] h-full -rotate-90 text-pin-blue-btn" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg></span></a><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><div class="tools-card bg-pin-peach-bg border-pin-peach-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="form-tool-image mx-auto w-[150px] h-[130px] bg-no-repeat md:scale-[115%] md:my-3" style="--mobile-pos: -210px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Has not fallen this season</h5> <!--[--><a id="no-falls-action" href="/grand-national-form/no-falls" class="inline-flex bg-pin-peach-btn hover:bg-pin-peach-btn-hover active:bg-pin-peach-btn-active hover:no-underline text-white text-sm font-medium py-1.5 px-4 rounded-full items-center gap-2 cursor-pointer !font-bold !text-base z-1">View <span class="w-4 h-4 bg-white rounded-full inline-block flex items-center justify-center text-pin-peach-btn"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="4px" stroke="currentColor" class="w-full p-0.5 translate-x-[0.5px] h-full -rotate-90 text-pin-peach-btn" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg></span></a><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><div class="tools-card bg-pin-yellow-bg border-pin-yellow-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="form-tool-image mx-auto w-[150px] h-[130px] bg-no-repeat md:scale-[115%] md:my-3" style="--mobile-pos: -435px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Has won over £100k</h5> <!--[--><a id="prize-money-action" href="/grand-national-form/prize-money" class="inline-flex bg-pin-yellow-btn hover:bg-pin-yellow-btn-hover active:bg-pin-yellow-btn-active hover:no-underline text-white text-sm font-medium py-1.5 px-4 rounded-full items-center gap-2 cursor-pointer !font-bold !text-base z-1">View <span class="w-4 h-4 bg-white rounded-full inline-block flex items-center justify-center text-pin-yellow-btn"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="4px" stroke="currentColor" class="w-full p-0.5 translate-x-[0.5px] h-full -rotate-90 text-pin-yellow-btn" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg></span></a><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><div class="tools-card bg-pin-purple-bg border-pin-purple-bg rounded-md p-3 text-center relative relative min-h-[180px] flex items-center justify-center gap-2 flex-col pr-[120px] mobile:pr-[160px] @xl:pr-0 @xl:py-5  "><div class="z-0 absolute max-mobile:scale-[70%] max-mobile:right-0 right-2 @xl:static @xl:right-auto"><!--[--><figure class="form-tool-image mx-auto w-[150px] h-[130px] bg-no-repeat md:scale-[115%] md:my-3" style="--mobile-pos: -655px;"></figure><!----><!--]--></div> <h5 class="text-xl @2xl:text-[1.3125rem] @xl:order-first text-gng-text-dark mb-2 z-1">Has won this season</h5> <!--[--><a id="season-wins-action" href="/grand-national-form/season-wins" class="inline-flex bg-pin-purple-btn hover:bg-pin-purple-btn-hover active:bg-pin-purple-btn-active hover:no-underline text-white text-sm font-medium py-1.5 px-4 rounded-full items-center gap-2 cursor-pointer !font-bold !text-base z-1">View <span class="w-4 h-4 bg-white rounded-full inline-block flex items-center justify-center text-pin-purple-btn"><svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="4px" stroke="currentColor" class="w-full p-0.5 translate-x-[0.5px] h-full -rotate-90 text-pin-purple-btn" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg></span></a><!--]--></div> <!----><script>
	if (!window._toolsDropdownInitialized) {
		window._toolsDropdownInitialized = true;
		document.addEventListener('click', function(e) {
			if (!e.target.closest('.tools-dropdown')) {
				document.querySelectorAll('.tools-dropdown-menu').forEach(function(menu) {
					menu.classList.add('hidden');
				});
			}
		});
	}
</script><!----><!--]--></div><!--]--><!--]--><!--]--></div></div><!--]--></div><!--]--></div>

<h2>Grand National News 2027</h2>

<p>Grand National Guide has been known for years as the best guide to the Grand National Horse Race. As well as all the information to help you to choose your bets, we provide lots of interesting and entertaining background information on the Aintree Grand National.&nbsp;</p>

<p>Have a read through some of our articles below.</p>
<div class="my-8 first:mt-0 last:mb-0"><!--[--><!--[--><div class="mb-10"><div class="@container w-full"><div class="articles-grid flex flex-col gap-6 @lg:grid @xl:grid-cols-2 @2xl:grid-cols-3"><!--[--><article class="overflow-hidden bg-white transition-shadow card hover:shadow-md article-snippet"><a href="/articles/how-bet-grand-national-online" class="block group hover:no-underline"><div class="overflow-hidden relative w-full aspect-video"><div class="absolute inset-0 z-0 animate-pulse aspect-video bg-c-bg-subtle"></div> <!--[--><img src="https://olbgimages.co.uk/storage/gallery/gng-app/media/willie-mullins-and-paul-townend-i-am-maximus.webp?v=1780965318203" alt="How To Bet on The Grand National (online)" width="512" height="288" loading="lazy" class="object-cover relative z-10 w-full h-auto transition-transform duration-300 aspect-video group-hover:scale-105"><!--]--></div> <header class="p-3"><h3 class="!m-0 text-lg leading-snug text-gng-text-dark group-hover:text-gng-orange">How To Bet on The Grand National (online)</h3>  <!--[--><div class="leading-relaxed text-gng-text-dark article-preview"><!----><p>Placing a bet on the Grand National is a 'once a year' pastime for many occasional punters and th...<!----></p></div><!--]--></header></a></article><article class="overflow-hidden bg-white transition-shadow card hover:shadow-md article-snippet"><a href="/articles/how-pick-your-horse-grand-national" class="block group hover:no-underline"><div class="overflow-hidden relative w-full aspect-video"><div class="absolute inset-0 z-0 animate-pulse aspect-video bg-c-bg-subtle"></div> <!--[--><img src="https://olbgimages.co.uk/storage/gallery/gng-app/media/noble-yeats-ridden-by-sam-waley.webp?v=1780965318203" alt="How To Pick Your Horse For The Grand National" width="512" height="288" loading="lazy" class="object-cover relative z-10 w-full h-auto transition-transform duration-300 aspect-video group-hover:scale-105"><!--]--></div> <header class="p-3"><h3 class="!m-0 text-lg leading-snug text-gng-text-dark group-hover:text-gng-orange">How To Pick Your Horse For The Grand National</h3>  <!--[--><div class="leading-relaxed text-gng-text-dark article-preview"><!----><p>Lots of different methods can be used to select the horses&nbsp; you want to back in the Grand Natio...</p><!----></div><!--]--></header></a></article><article class="overflow-hidden bg-white transition-shadow card hover:shadow-md article-snippet"><a href="/articles/grand-national-2025-review" class="block group hover:no-underline"><div class="overflow-hidden relative w-full aspect-video"><div class="absolute inset-0 z-0 animate-pulse aspect-video bg-c-bg-subtle"></div> <!--[--><img src="https://olbgimages.co.uk/storage/gallery/gng-app/media/patrick-mullins-after-winning-the-randox-grand-national-aboard-nick-rockett-close-up.webp?v=1780965318203" alt="Grand National 2025 review" width="512" height="288" loading="lazy" class="object-cover relative z-10 w-full h-auto transition-transform duration-300 aspect-video group-hover:scale-105"><!--]--></div> <header class="p-3"><h3 class="!m-0 text-lg leading-snug text-gng-text-dark group-hover:text-gng-orange">Grand National 2025 review</h3>  <!--[--><div class="leading-relaxed text-gng-text-dark article-preview"><!----><p>The 2025 Grand National was won by Nick Rockett trained and ridden by the father and son team of ...<!----></p></div><!--]--></header></a></article><!--]--></div></div> <!--[!--><div class="mt-6 pt-4 border-t border-c-border"><a class="font-bold flex items-center gap-2" href="/articles">More Grand National Articles <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2.5" stroke="currentColor" class="w-5 h-5 -rotate-90 translate-y-px -translate-x-0.5 inline-block !w-4 !h-4" aria-hidden="true"><path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5"></path></svg><!----></a></div><!--]--></div><!--]--><!--]--></div>

<p>Our Grand National Articles section covers reviews of the race from many years gone by (going right back to the 1990s), along with articles about the famous runners and riders which have become legends of the Grand National horse race.&nbsp;</p>

<p>As well as reading up on all the history of the Grand National, you can also check out pictures of the Aintree Grand National course and details about the unique Grand National fences.</p></body></html><!----></section><!--]--> <!--[--><section class="faq mt-2 last:mt-4 border rounded-md p-4 bg-gng-orange-light/5 border-gng-orange last:mb-0 "><!--[--><header class="mb-6 flex items-center gap-3"><div class="w-8 h-8 text-xl rounded-full bg-gng-green text-white flex items-center justify-center"><span class="font-condensed">?</span></div> <h3 class="font-condensed text-xl md:text-2xl m-0">Frequently Asked Questions</h3></header><!--]--> <!--[--><div class="flex flex-col md:grid md:grid-cols-2 md:gap-6"><ul class="flex flex-col gap-3 list-none p-0 m-0"><!--[--><li class="list-none"><div class="group cursor-pointer p-4 bg-white border border-gray-200 rounded-lg shadow-sm hover:bg-amber-50 hover:border-amber-300 transition-colors border !border-gng-orange" role="button" tabindex="0"><h3 class="flex items-center w-full p-0 m-0"><span class="flex-1 font-bold text-gray-900 text-base">When is the 2027 Grand National?</span></h3> <!--[--><div class="mt-4 pt-4 border-t border-gray-200 text-gray-700 prose prose-sm max-w-none"><!----><p>Saturday 10th April is the date of the 2027 Grand National.</p><!----></div><!--]--></div></li><li class="list-none"><div class="group cursor-pointer p-4 bg-white border border-gray-200 rounded-lg shadow-sm hover:bg-amber-50 hover:border-amber-300 transition-colors border !border-gng-orange" role="button" tabindex="0"><h3 class="flex items-center w-full p-0 m-0"><span class="flex-1 font-bold text-gray-900 text-base">What Time Is The 2027 Grand National?</span></h3> <!--[--><div class="mt-4 pt-4 border-t border-gray-200 text-gray-700 prose prose-sm max-w-none"><!----><p>The scheduled start time for the 2027 Grand National will be 4pm. The race will be shown live on ITV.</p><!----></div><!--]--></div></li><li class="list-none"><div class="group cursor-pointer p-4 bg-white border border-gray-200 rounded-lg shadow-sm hover:bg-amber-50 hover:border-amber-300 transition-colors border !border-gng-orange" role="button" tabindex="0"><h3 class="flex items-center w-full p-0 m-0"><span class="flex-1 font-bold text-gray-900 text-base">Who Won The Grand National?</span></h3> <!--[--><div class="mt-4 pt-4 border-t border-gray-200 text-gray-700 prose prose-sm max-w-none"><!----><p>I Am Maximus won the Grand National for the second time last year</p><!----></div><!--]--></div></li><!--]--></ul> <ul class="flex flex-col gap-3 list-none p-0 m-0 max-md:mt-3"><!--[--><li class="list-none"><div class="group cursor-pointer p-4 bg-white border border-gray-200 rounded-lg shadow-sm hover:bg-amber-50 hover:border-amber-300 transition-colors border !border-gng-orange" role="button" tabindex="0"><h3 class="flex items-center w-full p-0 m-0"><span class="flex-1 font-bold text-gray-900 text-base">Grand National Results</span></h3> <!--[--><div class="mt-4 pt-4 border-t border-gray-200 text-gray-700 prose prose-sm max-w-none"><!----><p>As soon as the runners cross the line, we will show the full Grand National 2027 results, including all the Grand National places here. For past results of the race, <a href="/previous-winners.php">see our Grand National Winners page</a>.</p><!----></div><!--]--></div></li><li class="list-none"><div class="group cursor-pointer p-4 bg-white border border-gray-200 rounded-lg shadow-sm hover:bg-amber-50 hover:border-amber-300 transition-colors border !border-gng-orange" role="button" tabindex="0"><h3 class="flex items-center w-full p-0 m-0"><span class="flex-1 font-bold text-gray-900 text-base">Which horse is going to win the Grand National?</span></h3> <!--[--><div class="mt-4 pt-4 border-t border-gray-200 text-gray-700 prose prose-sm max-w-none"><!----><p>One of <a href="/grand-national-tips.php">our tips&nbsp;</a>will win the 2027 Grand National (hopefully!). Our Grand National Experts do have an amazing record of finding the winner of the race.&nbsp;</p>

<p>We have advised three recent winners at nice odds of 50/1, 25/1 and 14/1, as well as some great each-way bets, including one at an amazing 100/1. So please come back to check out our tips for the 2026 Grand National.&nbsp;</p>

<p>Don't forget to also check out our <a href="/winner-predictor">winner predictor too</a>l. This tool has predicted the winner in two of the last three years!</p><!----></div><!--]--></div></li><li class="list-none"><div class="group cursor-pointer p-4 bg-white border border-gray-200 rounded-lg shadow-sm hover:bg-amber-50 hover:border-amber-300 transition-colors border !border-gng-orange" role="button" tabindex="0"><h3 class="flex items-center w-full p-0 m-0"><span class="flex-1 font-bold text-gray-900 text-base">How many horses run in the Grand National?</span></h3> <!--[--><div class="mt-4 pt-4 border-t border-gray-200 text-gray-700 prose prose-sm max-w-none"><!----><p>The maximum number of runners in the Grand National was reduced to 34 in 2024. This was done to try to make the race safer for horses and jockeys.</p>

<p>From last year, the Grand National became a 72-hour declaration race, which means the final declaration stage will be on the Wednesday before the big race. This change could lead to a potential for more non-runners in the National, so to counteract this, the BHA have agreed to extend the number of reserves in the Grand National to six from a previous maximum of four. This means a total of forty horses will be declared at the 72-hour stage, with the top thirty-four guaranteed a run. If there are any subsequent non-runners after declaration day, the horse declared at number thirty-five will move up to become a confirmed runner.&nbsp;</p>

<p>
	<br>
</p><!----></div><!--]--></div></li><!--]--></ul></div><!--]--> <!--[--><!----><script type="application/ld+json">{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"When is the 2027 Grand National?","acceptedAnswer":{"@type":"Answer","text":"Saturday 10th April is the date of the 2027 Grand National."}},{"@type":"Question","name":"What Time Is The 2027 Grand National?","acceptedAnswer":{"@type":"Answer","text":"The scheduled start time for the 2027 Grand National will be 4pm. The race will be shown live on ITV."}},{"@type":"Question","name":"Who Won The Grand National?","acceptedAnswer":{"@type":"Answer","text":"I Am Maximus won the Grand National for the second time last year"}},{"@type":"Question","name":"Grand National Results","acceptedAnswer":{"@type":"Answer","text":"As soon as the runners cross the line, we will show the full Grand National 2027 results, including all the Grand National places here. For past results of the race, see our Grand National Winners page."}},{"@type":"Question","name":"Which horse is going to win the Grand National?","acceptedAnswer":{"@type":"Answer","text":"One of our tips&nbsp;will win the 2027 Grand National (hopefully!). Our Grand National Experts do have an amazing record of finding the winner of the race.&nbsp;\n\nWe have advised three recent winners at nice odds of 50/1, 25/1 and 14/1, as well as some great each-way bets, including one at an amazing 100/1. So please come back to check out our tips for the 2026 Grand National.&nbsp;\n\nDon't forget to also check out our winner predictor tool. This tool has predicted the winner in two of the last three years!"}},{"@type":"Question","name":"How many horses run in the Grand National?","acceptedAnswer":{"@type":"Answer","text":"The maximum number of runners in the Grand National was reduced to 34 in 2024. This was done to try to make the race safer for horses and jockeys.\n\nFrom last year, the Grand National became a 72-hour declaration race, which means the final declaration stage will be on the Wednesday before the big race. This change could lead to a potential for more non-runners in the National, so to counteract this, the BHA have agreed to extend the number of reserves in the Grand National to six from a previous maximum of four. This means a total of forty horses will be declared at the 72-hour stage, with the top thirty-four guaranteed a run. If there are any subsequent non-runners after declaration day, the horse declared at number thirty-five will move up to become a confirmed runner.&nbsp;\n\n\n\t\n"}}]}</script><!----><!--]--></section><!--]--> <!--[!--><!--]--> <!--[!--><!--]--> <!--[--><!--[--><section class="pt-8 pb-4 mt-2 border-t border-dotted gng-copy border-gng-orange"><!--[--><h2>Further Grand National Information</h2><!--]--> <!--[--><!----><p>Dig deep into the Grand National Guide, and you will find everything you need to know about the famous Aintree horse race.&nbsp;</p>

<p>For your convenience, we provide above some of the more popular Grand National questions and answers and below some further useful Grand National information.</p>

<h3>Grand National Race Card&nbsp;</h3>

<p>Grand National Guide provides all the information that most people betting on the race require. <a href="/grand-national-runners.php">Full list of runners</a>, form, stats and analysis.&nbsp;</p>

<p>We also have excellent tools to help you to narrow down the field based on form factors you choose. If you would like to study the form in even more detail, then click on the horse profile of any horse for a full description of their form and detailed stats.&nbsp;</p>

<h3>More Information on The Grand National Horse Race</h3>

<p>Further Grand National information about the event can be found at the <a href="https://www.thejockeyclub.co.uk/aintree/events-tickets/grand-national/" rel="noopener noreferrer" target="_blank">official site</a>.&nbsp;</p>

<p>For more in-depth Grand National history, beyond our excellent guides, <a href="https://en.wikipedia.org/wiki/Grand_National" rel="noopener noreferrer" target="_blank">try the Grand National wiki page</a>.&nbsp;</p>

<p>For more tips and expert opinions, our sister site <a href="https://www.olbg.com/betting-tips/Horse_Racing/2" rel="noopener noreferrer" target="_blank">OLBG (Online Betting Guide) is the most popular horse racing tips site in the UK.</a></p><!----><!--]--></section><!--]--><!--]--> <!--[!--><!--]--> <!--[!--><!--]--> <!--[!--><!--]--></div></div> <!--[--><aside class="w-full translate-x-3 -translate-y-3 md:w-1/3 max-lg:hidden"><!--[--><!----><!--[--><div class="offers-list
        flex flex-col gap-4
        @lg:grid @lg:grid-cols-2 @lg:gap-4
        @4xl:grid-cols-4
        
        max-lg:!hidden"><!--[--><a href="https://olbg.info/26/L4/D/gng_horses_list/ctr10434:978/none/robots" target="_blank" rel="nofollow" class="offer group/offer relative flex flex-col justify-start rounded-md overflow-hidden gap-1.5 p-3 no-underline hover:no-underline max-md:items-center" style="background-color: #323741; color: #ffffff; --offer-bg: #323741; --offer-text: #ffffff;"><header class="offer-header p-3 pt-0 cursor-pointer transition-opacity select-none flex flex-col items-center text-center max-w-[25ch] mx-auto gap-1.5 @xs:max-w-none" role="button" tabindex="0"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=120x30&amp;v=1681737028&amp;i=26" alt="BetVictor" width="120" height="30" class="rounded my-2"> <h3 class="text-lg leading-snug font-bold m-0  ">Bet £10, get £30 in Free Bets + 100% Boost Token</h3></header> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                            text-sm border-0 py-2
                            max-md:!w-fit
                            max-md:px-10
                        	group-hover/offer:!text-white
                        	group-hover/offer:!bg-gng-orange
                            group-hover/offer:border-transparent
                        	hover:!bg-gng-orange
                            hover:border-transparent
                     ">CLAIM NOW</button><!----> <div class="border-t border-dashed border-white/30 pt-3 mt-3"><p class="offer-body text-[.6875rem] leading-snug opacity-85  ">18+ New customers only. Opt in, deposit &amp; bet £10+ on any football market (odds 2.00+) within 7 days of registration. No cash out. Get £30 in Free Bets + 1x100% Boost tokens (max £10 stakes) for selected football markets Free Bets expire in 7 days. T&amp;Cs apply.  GambleAware.org | Please gamble responsibly</p> <p class="text-[.6875rem] opacity-60">18+, begambleaware.org, T&amp;Cs Apply</p></div></a><a href="https://olbg.info/7/L4/D/gng_horses_list/ctr7636:978/none/robots" target="_blank" rel="nofollow" class="offer group/offer relative flex flex-col justify-start rounded-md overflow-hidden gap-1.5 p-3 no-underline hover:no-underline max-md:items-center" style="background-color: #027b5d; color: #ffffff; --offer-bg: #027b5d; --offer-text: #ffffff;"><header class="offer-header p-3 pt-0 cursor-pointer transition-opacity select-none flex flex-col items-center text-center max-w-[25ch] mx-auto gap-1.5 @xs:max-w-none" role="button" tabindex="0"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=120x30&amp;v=1681737028&amp;i=7" alt="bet365" width="120" height="30" class="rounded my-2"> <h3 class="text-lg leading-snug font-bold m-0  ">Bet £10 &amp; Get £30 in Free Bets for new customers at bet365.</h3></header> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                            text-sm border-0 py-2
                            max-md:!w-fit
                            max-md:px-10
                        	group-hover/offer:!text-white
                        	group-hover/offer:!bg-gng-orange
                            group-hover/offer:border-transparent
                        	hover:!bg-gng-orange
                            hover:border-transparent
                     ">CLAIM NOW</button><!----> <div class="border-t border-dashed border-white/30 pt-3 mt-3"><p class="offer-body text-[.6875rem] leading-snug opacity-85  ">Min deposit requirement. Free Bets are paid as Bet Credits and are available for use upon settlement of bets to value of qualifying deposit. Min odds, bet and payment method exclusions apply. Returns exclude Bet Credits stake. Registration required. Time limits and T&amp;Cs apply. #ad</p> <p class="text-[.6875rem] opacity-60">18+, begambleaware.org, T&amp;Cs Apply</p></div></a><a href="https://olbg.info/2/L4/D/gng_horses_list/ctr10450:978/none/robots" target="_blank" rel="nofollow" class="offer group/offer relative flex flex-col justify-start rounded-md overflow-hidden gap-1.5 p-3 no-underline hover:no-underline max-md:items-center" style="background-color: #00143c; color: #ffffff; --offer-bg: #00143c; --offer-text: #ffffff;"><header class="offer-header p-3 pt-0 cursor-pointer transition-opacity select-none flex flex-col items-center text-center max-w-[25ch] mx-auto gap-1.5 @xs:max-w-none" role="button" tabindex="0"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=120x30&amp;v=1681737028&amp;i=2" alt="William Hill" width="120" height="30" class="rounded my-2"> <h3 class="text-lg leading-snug font-bold m-0  ">Bet £10, Get £30 in Free Bets</h3></header> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                            text-sm border-0 py-2
                            max-md:!w-fit
                            max-md:px-10
                        	group-hover/offer:!text-white
                        	group-hover/offer:!bg-gng-orange
                            group-hover/offer:border-transparent
                        	hover:!bg-gng-orange
                            hover:border-transparent
                     ">CLAIM NOW</button><!----> <div class="border-t border-dashed border-white/30 pt-3 mt-3"><p class="offer-body text-[.6875rem] leading-snug opacity-85  ">18+. Play Safe. From 00:01 on 18.10.2022. £30 bonus. New customers only. Minimum £10 stake on odds of 1/2 (1.5) or greater on sportsbook (excluding Virtual markets). Further terms apply. #ad</p> <p class="text-[.6875rem] opacity-60">18+, begambleaware.org, T&amp;Cs Apply</p></div></a><a href="https://olbg.info/190/L4/D/gng_horses_list/ctr8227:978/none/robots" target="_blank" rel="nofollow" class="offer group/offer relative flex flex-col justify-start rounded-md overflow-hidden gap-1.5 p-3 no-underline hover:no-underline max-md:items-center" style="background-color: #8225fa; color: #ffffff; --offer-bg: #8225fa; --offer-text: #ffffff;"><header class="offer-header p-3 pt-0 cursor-pointer transition-opacity select-none flex flex-col items-center text-center max-w-[25ch] mx-auto gap-1.5 @xs:max-w-none" role="button" tabindex="0"><img loading="lazy" src="https://olbg-shared.scdn1.secure.raxcdn.com/bookies/bookie-svg.php?s=120x30&amp;v=1681737028&amp;i=190" alt="Kwiff" width="120" height="30" class="rounded my-2"> <h3 class="text-lg leading-snug font-bold m-0  ">Bet £10, Get £40 in Free Bets</h3></header> <button class=" font-bold text-sm bg-gng-yellow border text-center py-1 px-3 rounded-sm text-gng-text-dark border-gng-yellow-gold-dark hover:cursor-pointer hover:bg-gng-blue hover:border-transparent hover:text-white active:shadow-inner active:translate-y-0.5 
                            text-sm border-0 py-2
                            max-md:!w-fit
                            max-md:px-10
                        	group-hover/offer:!text-white
                        	group-hover/offer:!bg-gng-orange
                            group-hover/offer:border-transparent
                        	hover:!bg-gng-orange
                            hover:border-transparent
                     ">CLAIM NOW</button><!----> <div class="border-t border-dashed border-white/30 pt-3 mt-3"><p class="offer-body text-[.6875rem] leading-snug opacity-85  ">New UK customers. Place a £10 real money bet at min. 2.0 odds within 5 days of deposit. Get 4 x £10 Free Bets: 1 Single, 2 Accas &amp; 1 Bet Builder (min. 3 selections each). Excludes cashout, E/W, Multis, Ineligible Markets &amp; Odds Boosts. Credited after bet settlement. 7-day expiry. T&amp;Cs apply. 18+ | GambleAware</p> <p class="text-[.6875rem] opacity-60">18+, begambleaware.org, T&amp;Cs Apply</p></div></a><!--]--></div><!--]--><!----><!--]--></aside><!--]--></div><!--]--></div><!----><!----></div></div></main> <footer class="page-footer bg-gng-green text-white text-center  "><div class="mb-8 leading-snug"><p class="mb-1.5">2002-2026 Grand National Guide</p> <p class="mb-1.5">Powered By: <a href="https://www.olbg.com" class="text-white font-bold hover:underline" target="_blank" rel="noopener">OLBG</a>, part of <a href="https://www.invendium.co.uk/" class="text-white font-bold hover:underline" target="_blank" rel="noopener">Invendium Ltd</a></p> <p><a href="/terms" class="text-white font-bold hover:underline">Terms</a> <span class="mx-2">|</span> <a href="/privacy" class="text-white font-bold hover:underline">Privacy</a></p></div> <div class="bg-gng-dark-green py-8 px-4 text-xs text-white"><div class="flex gap-5 justify-center items-center mb-4"><img src="/sk-assets/icons/legal/SVG/18.svg?v=1780965318203" alt="18+" class="h-8" loading="lazy"/> <a href="https://www.begambleaware.org/" rel="nofollow" target="_blank"><img src="/sk-assets/icons/legal/SVG/gamble-aware.svg?v=1780965318203" alt="BeGambleAware" class="h-5" loading="lazy"/></a></div> <p class="mb-3">Odds are correct at time of publishing but are subject to change</p> <p class="text-white/60 max-w-4xl mx-auto">Please gamble responsibly and only bet what you can afford to lose. Betting sites have a
			number of tools to help you to stay in control such as deposit limits and time outs. <a href="https://www.olbg.com/bookmakers/articles/responsible-gambling-olbg" target="_blank" rel="noopener" class="text-white font-bold hover:underline">Read more in our guide here</a>. If you think you aren't in control of your gambling then seek help immediately from
			BeGambleAware or Gamcare. Advice and support is available for you now.</p></div></footer><!----> <!--[!--><!--]--><!----></div><!----><!--]--> <!--[!--><!--]--><!--]--></div>
	</body>
</html>
