<!DOCTYPE html> 
<html>
<head>
	<meta http-equiv="X-UA-Compatible" content="IE=edge" />
	<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />

	<!-- This site is optimized with the Yoast SEO plugin v20.4 - https://yoast.com/wordpress/plugins/seo/ -->
	<meta name="description" content="Discover feature cars, archive material and expert practical advice aimed at making life with an iconic VW affordable, fun and totally fulfilling" />
	<link rel="canonical" href="https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/" />
	<meta property="og:locale" content="en_US" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="VolksWorld | KELSEY Media" />
	<meta property="og:description" content="Discover feature cars, archive material and expert practical advice aimed at making life with an iconic VW affordable, fun and totally fulfilling" />
	<meta property="og:url" content="https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/" />
	<meta property="og:site_name" content="KELSEY Media" />
	<meta property="article:modified_time" content="2021-08-02T18:16:39+00:00" />
	<meta name="twitter:card" content="summary_large_image" />
	<meta name="twitter:label1" content="Est. reading time" />
	<meta name="twitter:data1" content="1 minute" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/","url":"https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/","name":"VolksWorld | KELSEY Media","isPartOf":{"@id":"https://www.kelsey.co.uk/#website"},"datePublished":"2017-01-04T11:10:29+00:00","dateModified":"2021-08-02T18:16:39+00:00","description":"Discover feature cars, archive material and expert practical advice aimed at making life with an iconic VW affordable, fun and totally fulfilling","breadcrumb":{"@id":"https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/"]}]},{"@type":"BreadcrumbList","@id":"https://www.kelsey.co.uk/brand/classic-prestige-cars/volksworld/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.kelsey.co.uk/"},{"@type":"ListItem","position":2,"name":"Brands","item":"https://www.kelsey.co.uk/brands/"},{"@type":"ListItem","position":3,"name":"VolksWorld"}]},{"@type":"WebSite","@id":"https://www.kelsey.co.uk/#website","url":"https://www.kelsey.co.uk/","name":"KELSEY Media","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.kelsey.co.uk/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}</script>
	<!-- / Yoast SEO plugin. -->


<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/www.kelsey.co.uk\/wp-includes\/js\/wp-emoji.js?ver=6.1.10","twemoji":"https:\/\/www.kelsey.co.uk\/wp-includes\/js\/twemoji.js?ver=6.1.10"}};
/**
 * @output wp-includes/js/wp-emoji-loader.js
 */

( function( window, document, settings ) {
	var src, ready, ii, tests;

	// Create a canvas element for testing native browser support of emoji.
	var canvas = document.createElement( 'canvas' );
	var context = canvas.getContext && canvas.getContext( '2d' );

	/**
	 * Checks if two sets of Emoji characters render the same visually.
	 *
	 * @since 4.9.0
	 *
	 * @private
	 *
	 * @param {number[]} set1 Set of Emoji character codes.
	 * @param {number[]} set2 Set of Emoji character codes.
	 *
	 * @return {boolean} True if the two sets render the same.
	 */
	function emojiSetsRenderIdentically( set1, set2 ) {
		var stringFromCharCode = String.fromCharCode;

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set1 ), 0, 0 );
		var rendered1 = canvas.toDataURL();

		// Cleanup from previous test.
		context.clearRect( 0, 0, canvas.width, canvas.height );
		context.fillText( stringFromCharCode.apply( this, set2 ), 0, 0 );
		var rendered2 = canvas.toDataURL();

		return rendered1 === rendered2;
	}

	/**
	 * Detects if the browser supports rendering emoji or flag emoji.
	 *
	 * Flag emoji are a single glyph made of two characters, so some browsers
	 * (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @private
	 *
	 * @param {string} type Whether to test for support of "flag" or "emoji".
	 *
	 * @return {boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var isIdentical;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		switch ( type ) {
			case 'flag':
				/*
				 * Test for Transgender flag compatibility. This flag is shortlisted for the Emoji 13 spec,
				 * but has landed in Twemoji early, so we can add support for it, too.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (white flag emoji + transgender symbol).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0x1F3F3, 0xFE0F, 0x200D, 0x26A7, 0xFE0F ],
					[ 0x1F3F3, 0xFE0F, 0x200B, 0x26A7, 0xFE0F ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for UN flag compatibility. This is the least supported of the letter locale flags,
				 * so gives us an easy test for full support.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly ([U] + [N]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0xD83C, 0xDDFA, 0xD83C, 0xDDF3 ],
					[ 0xD83C, 0xDDFA, 0x200B, 0xD83C, 0xDDF3 ]
				);

				if ( isIdentical ) {
					return false;
				}

				/*
				 * Test for English flag compatibility. England is a country in the United Kingdom, it
				 * does not have a two letter locale code but rather an five letter sub-division code.
				 *
				 * To test for support, we try to render it, and compare the rendering to how it would look if
				 * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
				 */
				isIdentical = emojiSetsRenderIdentically(
					[ 0xD83C, 0xDFF4, 0xDB40, 0xDC67, 0xDB40, 0xDC62, 0xDB40, 0xDC65, 0xDB40, 0xDC6E, 0xDB40, 0xDC67, 0xDB40, 0xDC7F ],
					[ 0xD83C, 0xDFF4, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC62, 0x200B, 0xDB40, 0xDC65, 0x200B, 0xDB40, 0xDC6E, 0x200B, 0xDB40, 0xDC67, 0x200B, 0xDB40, 0xDC7F ]
				);

				return ! isIdentical;
			case 'emoji':
				/*
				 * Why can't we be friends? Everyone can now shake hands in emoji, regardless of skin tone!
				 *
				 * To test for Emoji 14.0 support, try to render a new emoji: Handshake: Light Skin Tone, Dark Skin Tone.
				 *
				 * The Handshake: Light Skin Tone, Dark Skin Tone emoji is a ZWJ sequence combining 🫱 Rightwards Hand,
				 * 🏻 Light Skin Tone, a Zero Width Joiner, 🫲 Leftwards Hand, and 🏿 Dark Skin Tone.
				 *
				 * 0x1FAF1 == Rightwards Hand
				 * 0x1F3FB == Light Skin Tone
				 * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
				 * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
				 * 0x1FAF2 == Leftwards Hand
				 * 0x1F3FF == Dark Skin Tone.
				 *
				 * When updating this test for future Emoji releases, ensure that individual emoji that make up the
				 * sequence come from older emoji standards.
				 */
				isIdentical = emojiSetsRenderIdentically(
					[0x1FAF1, 0x1F3FB, 0x200D, 0x1FAF2, 0x1F3FF],
					[0x1FAF1, 0x1F3FB, 0x200B, 0x1FAF2, 0x1F3FF]
				);

				return ! isIdentical;
		}

		return false;
	}

	/**
	 * Adds a script to the head of the document.
	 *
	 * @ignore
	 *
	 * @since 4.2.0
	 *
	 * @param {Object} src The url where the script is located.
	 * @return {void}
	 */
	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.defer = script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'flag', 'emoji' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	/*
	 * Tests the browser support for flag emojis and other emojis, and adjusts the
	 * support settings accordingly.
	 */
	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;

	// Sets DOMReady to false and assigns a ready function to settings.
	settings.DOMReady = false;
	settings.readyCallback = function() {
		settings.DOMReady = true;
	};

	// When the browser can not render everything we need to load a polyfill.
	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		/*
		 * Cross-browser version of adding a dom ready event.
		 */
		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		src = settings.source || {};

		if ( src.concatemoji ) {
			addScript( src.concatemoji );
		} else if ( src.wpemoji && src.twemoji ) {
			addScript( src.twemoji );
			addScript( src.wpemoji );
		}
	}

} )( window, document, window._wpemojiSettings );
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
	<link rel='stylesheet' id='wp-block-library-css' href='https://www.kelsey.co.uk/wp-includes/css/dist/block-library/style.css?ver=6.1.10' type='text/css' media='all' />
<link rel='stylesheet' id='classic-theme-styles-css' href='https://www.kelsey.co.uk/wp-includes/css/classic-themes.css?ver=1' type='text/css' media='all' />
<style id='global-styles-inline-css' type='text/css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel="https://api.w.org/" href="https://www.kelsey.co.uk/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.kelsey.co.uk/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.kelsey.co.uk/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 6.1.10" />
<link rel='shortlink' href='https://www.kelsey.co.uk/?p=3241' />
<link rel="alternate" type="application/json+oembed" href="https://www.kelsey.co.uk/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.kelsey.co.uk%2Fbrand%2Fclassic-prestige-cars%2Fvolksworld%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://www.kelsey.co.uk/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.kelsey.co.uk%2Fbrand%2Fclassic-prestige-cars%2Fvolksworld%2F&#038;format=xml" />
	<meta charset="UTF-8">
   	<title>VolksWorld | KELSEY Media</title>
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
	<meta name="format-detection" content="telephone=no">
	<link rel="stylesheet" href="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/css/styles.css?17-09-33" media="screen"/>
	<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
	<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/js/html5shiv.js"></script>
	<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/js/selectivizr-min.js"></script>
		<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/js/slick.min.js"></script>
	<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/forms/placeholders.min.js"></script>
	<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/forms/jquery.validate.min.js"></script>
	<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/forms/forms.js"></script>
	<script type="text/javascript" src="https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/js/javascript.js"></script>
	
	<!-- Google Tag Manager -->
	<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
	new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
	j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
	'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
	})(window,document,'script','dataLayer','GTM-N2RJ4BM');</script>
	<!-- End Google Tag Manager -->	
	
	<script>
	  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
	  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
	  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
	  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
	 
	  ga('create', 'UA-2421433-4', 'auto');
	  ga('send', 'pageview');
	 
	</script>
	
	<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
	<script>
	  (adsbygoogle = window.adsbygoogle || []).push({
	    google_ad_client: "ca-pub-1316949505623951",
	    enable_page_level_ads: true
	  });
	</script>


	
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
  "palette": {
    "popup": {
      "background": "#000"
    },
    "button": {
      "background": "#f1d600"
    }
  }
})});
</script>	

	
</head>
<body class="listings-template-default single single-listings postid-3241 volksworld">
	
	
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src=https://www.googletagmanager.com/ns.html?id=GTM-N2RJ4BM
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
	
	<div id="page-wrap">
		
		<div id="header-wrap" class="container">
			<header id="header" class="wrapper">
				<a id="main-logo" href="/">
					<svg class="icon" viewBox="0 0 75 75">
						<title>Kelsey Media</title>
						<path class="group-a" d="M48.7,60L38,45l-0.6,0.4V60H18.2V14.2h19.2v15.3l11.2-15.3h18.3C60,5.5,49.4,0,37.5,0C16.8,0,0,16.8,0,37.5 S16.8,75,37.5,75c12.3,0,23.2-5.9,30-15H48.7z"/>
						<path class="group-a" d="M52.6,35.1l16.6,22.4c3.7-5.8,5.8-12.7,5.8-20c0-8.3-2.7-16-7.3-22.2L52.6,35.1z"/>
					</svg>
					<svg class="text" viewBox="0 0 130 20">
						<title>Kelsey Media</title>
						<g>
							<g>
								<path class="group-a" d="M0,0.5h3.7v8h0.1l3.4-8H11L7,9.6l4.2,9.9H7.1l-3.2-8.3H3.7v8.3H0V0.5z"/>
								<path class="group-a" d="M11.9,0.5h9.8v3.3h-6v4.5H21v3.2h-5.4v4.9h6.1v3.2h-9.9L11.9,0.5L11.9,0.5z"/>
								<path class="group-a" d="M22.6,0.5h3.7v15.9H32v3.2h-9.4V0.5z"/>
								<path class="group-a" d="M41.5,0.5v3.3h-5.2L36.2,4l4.3,7.9c0.7,1.2,1.3,2.6,1.3,3.6c0,2-0.8,3.3-1.8,4h-7.2v-3.2h5.6l0.1-0.2 l-4.9-8.8c-0.6-1.1-1.1-2.2-1.1-3.1c0-1.3,0.5-3,2.4-3.8L41.5,0.5L41.5,0.5z"/>
								<path class="group-a" d="M42.4,0.5h9.8v3.3h-6v4.5h5.4v3.2h-5.4v4.9h6.1v3.2h-9.9V0.5z"/>
								<path class="group-a" d="M56.4,19.5v-6.3l-4-12.7h3.7l1.7,5.8l0.6,3.3h0.1l0.6-3.3l1.7-5.8h3.7l-4,12.7v6.3H56.4z"/>
							</g>
							<g>
								<path class="group-b" d="M66.6,19.4V8h1.6v1.8c0.7-1.5,2-2.2,3.6-2.2c1.7,0,2.9,0.8,3.5,2.2c0.9-1.5,2.2-2.2,4-2.2 c2.4,0,3.9,1.6,3.9,4.1v7.7h-1.6v-7.1c0-2.2-0.9-3.4-2.7-3.4c-2.3,0-3.2,1.5-3.2,4.5v6h-1.6v-7.1c0-2.2-0.8-3.4-2.7-3.4 c-2.3,0-3.2,1.5-3.2,4.5v6H66.6z"/>
								<path class="group-b" d="M87.2,13.7c0.1,3,1.6,4.8,3.9,4.8c1.7,0,2.9-0.9,3.8-2.7l1.5,0.8c-1.2,2.3-2.8,3.4-5.3,3.4 c-3.4,0-5.6-2.5-5.6-6.1c0-3.8,2.3-6.3,5.6-6.3c3.1,0,5.2,2.2,5.2,5.8c0,0.1,0,0.3,0,0.4h-9.1V13.7z M90.9,9.1 c-1.8,0-3.4,1.3-3.5,3.3h7.1C94.3,10.3,93,9.1,90.9,9.1z"/>
								<path class="group-b" d="M107.9,17.3c-0.7,1.7-2.1,2.6-4,2.6c-3.3,0-5.5-2.5-5.5-6.2s2.2-6.2,5.3-6.2c1.9,0,3.4,0.8,4.1,2.5V0h1.6 v19.4h-1.6L107.9,17.3L107.9,17.3z M104.1,18.4c2.3,0,3.9-1.7,3.9-4.9c0-2.9-1.5-4.5-3.8-4.5s-3.9,1.8-3.9,4.8 C100.3,16.8,101.7,18.4,104.1,18.4z"/>
								<path class="group-b" d="M114.7,2.3c0.7,0,1.2,0.5,1.2,1.2s-0.5,1.2-1.2,1.2s-1.2-0.6-1.2-1.2C113.5,2.8,114,2.3,114.7,2.3z M113.9,8 h1.6v11.4h-1.6V8z"/>
								<path class="group-b" d="M128.4,17.3c-0.7,1.7-2.2,2.6-4,2.6c-3.3,0-5.5-2.5-5.5-6.2s2.2-6.2,5.3-6.2c1.9,0,3.4,0.8,4.2,2.5V7.9h1.6 v11.4h-1.6V17.3z M124.6,18.4c2.3,0,3.9-1.7,3.9-4.9c0-2.9-1.5-4.5-3.9-4.5c-2.3,0-3.9,1.8-3.9,4.8S122.1,18.4,124.6,18.4z"/>
							</g>
						</g>
					</svg>
				</a>
				<button id="nav-toggle"><span>Menu</span></button>
				<nav id="main-nav">
					<div class="wrap">
						<div class="inner">
							<ul id="menu-primary" class="menu"><li id="menu-item-26" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-26"><a href="https://www.kelsey.co.uk/">Home</a></li>
<li id="menu-item-4913" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4913"><a href="/brands/">Brands</a></li>
<li id="menu-item-4915" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4915"><a href="https://shop.kelsey.co.uk/">Kelsey Shop</a></li>
<li id="menu-item-28" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-28"><a href="https://www.kelsey.co.uk/advertise/">Advertise</a></li>
<li id="menu-item-5146" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-5146"><a target="_blank" rel="noopener" href="https://www.mortons.co.uk/recruitment/">Careers</a></li>
<li id="menu-item-31" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-31"><a href="https://www.kelsey.co.uk/news/">News</a></li>
<li id="menu-item-27" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-27"><a href="https://www.kelsey.co.uk/about-us/">About us</a></li>
<li id="menu-item-30" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-30"><a href="https://www.kelsey.co.uk/contact/">Contact</a></li>
<li id="menu-item-4948" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4948"><a target="_blank" rel="noopener" href="https://www.kelsey.co.uk/affiliate/">Affiliates</a></li>
</ul>						</div>
					</div>
					<button class="close">
						<title>Close</title>
						<svg version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve">
							<polygon class="icon" points="43.4,10.9 39.1,6.6 25,20.8 10.9,6.6 6.6,10.9 20.8,25 6.6,39.1 10.9,43.4 25,29.2 39.1,43.4 43.4,39.1 29.2,25 "/>
						</svg>
					</button>
				</nav>	
			</header>
		</div>

		
			<div id="banner-wrap" class="container">
			
				
						
										<div id="slides-wrap">
												
														<div class="banner" href="" style="background-image:url('https://www.kelsey.co.uk/wp-content/uploads/160401-Kevins-Chocolate-Oval-014.jpg');">
														
																
														</div>
														
												
														<div class="banner" href="" style="background-image:url('https://www.kelsey.co.uk/wp-content/uploads/160720-RestoHaus-Bamboo-Cabrio-014.jpg');">
														
																
														</div>
														
											</div>
						
								
			</div>
		
		
		
		<div id="content-wrap" class="container">
			<div id="content-inner" class="wrapper">
				<aside id="side-col">

	<div class="block sub-nav">
		<h2>Our Brands</h2>
		<ul id="menu-categories" class="menu"><li id="menu-item-4916" class="menu-item menu-item-type-taxonomy menu-item-object-sector current-listings-ancestor current-menu-parent current-listings-parent menu-item-4916"><a href="https://www.kelsey.co.uk/brands/classic-prestige-cars/">Classic &amp; Prestige Cars</a></li>
<li id="menu-item-4917" class="menu-item menu-item-type-taxonomy menu-item-object-sector menu-item-4917"><a href="https://www.kelsey.co.uk/brands/farming-fisheries-smallholding/">Farming, Fisheries &amp; Smallholding</a></li>
<li id="menu-item-4914" class="menu-item menu-item-type-taxonomy menu-item-object-sector menu-item-4914"><a href="https://www.kelsey.co.uk/brands/fitness/">Healthy Active Living</a></li>
<li id="menu-item-4919" class="menu-item menu-item-type-taxonomy menu-item-object-sector menu-item-4919"><a href="https://www.kelsey.co.uk/brands/hobbies/">Hobbies</a></li>
<li id="menu-item-4918" class="menu-item menu-item-type-taxonomy menu-item-object-sector menu-item-4918"><a href="https://www.kelsey.co.uk/brands/performance-modified-cars/">Performance &amp; Modified Cars</a></li>
<li id="menu-item-4920" class="menu-item menu-item-type-taxonomy menu-item-object-sector menu-item-4920"><a href="https://www.kelsey.co.uk/brands/technology/">Technology</a></li>
<li id="menu-item-4271" class="menu-item menu-item-type-taxonomy menu-item-object-sector menu-item-4271"><a href="https://www.kelsey.co.uk/brands/transport-machinery/">Transport &amp; Machinery</a></li>
</ul>	</div>
	
</aside>

				<main id="content">


<header>
	
	<h1 class="hidden">VolksWorld</h1>
	
		<span class="logo">
			<img src="https://www.kelsey.co.uk/wp-content/uploads/volksworld-LOGO-2016_100mm-cmyk.jpg" alt="VolksWorld" />
		</span>
		
	<div class="info-block brand">
		<div class="col col-1">
			<ul class="links">
													<li class="print"><a target="_blank" href="/wp-content/uploads/275mm-x-200mm-Ad-Spec.pdf">Print Ad Specs</a></li>
																											</ul>
		</div>
		<div class="col col-2">
			<ul class="social">
									<li class="twitter"><a href="https://twitter.com/VolksWorld" target="_blank">Twitter</a></li>
													<li class="facebook"><a href="https://www.facebook.com/volksworldmagazine/" target="_blank">Facebook</a></li>
													<li class="instagram"><a href="https://www.instagram.com/volksworldmag/" target="_blank">Instagram</a></li>
							</ul>
		</div>
		<div class="col col-3">
							<p class="subscribe"><a href="http://shop.kelsey.co.uk/subscription/VWW" target="_blank">Subscribe</a></p>
								</div>
	</div>
	
</header>

			<p>First published back in 1987, <strong><em>VolksWorld</em> </strong>has been the must-read publication for air-coooled VW enthusiasts the world over for three decades. Every issue is brimmed full of benchmark-setting feature cars, archive material and expert practical advice aimed at making life with an iconic Beetle, Bus or Type 3 or 4 affordable, fun and totally fulfilling. Whatever your age, gender, taste or budget it’s undoubtedly the best place to get your regular classic VW motoring fix…</p>
<p>The brand not only has fantastic magazine content available in both <a href="http://shop.kelsey.co.uk/subscription/VWW" target="_blank" rel="noopener">print</a> and <a href="https://pocketmags.com/volksworld-magazine" target="_blank" rel="noopener">digital </a>format but also has a considerable social following across multiple platforms. The VolksWorld Facebook page has over 280,000 followers and continues to be a hub for VW lovers. All social links can be found above be sure to check them out.</p>
	
<div class="page-controls">
	<nav>
		<a class="button theme-a" href="/brands/classic-prestige-cars/">See all Classic &amp; Prestige Cars</a>
	</nav>
</div>
	
				</main><!-- Content -->
			</div><!-- Content Inner -->
		</div><!-- Content Wrap -->
		
		<div id="footer-wrap" class="container">
			<footer id="footer" class="wrapper">
				<div class="wrap first">
					<nav>
						<ul id="menu-secondary" class="menu"><li id="menu-item-4957" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4957"><a href="https://www.kelsey.co.uk/terms-conditions/">Terms &#038; Conditions</a></li>
<li id="menu-item-4958" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4958"><a href="https://shop.kelsey.co.uk/terms-and-conditions">EVENT TERMS &#038; CONDITIONS</a></li>
<li id="menu-item-4959" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-4959"><a href="https://shop.kelsey.co.uk/terms-and-conditions">COMPETITION TERMS &#038; CONDITIONS</a></li>
<li id="menu-item-4949" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4949"><a href="https://www.kelsey.co.uk/cookie-policy/">COOKIE POLICY</a></li>
<li id="menu-item-4950" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4950"><a href="https://www.kelsey.co.uk/privacy-notice/">PRIVACY NOTICE</a></li>
</ul>			
					</nav>
					<ul class="social">
						<li class="facebook"><a href="https://www.facebook.com/KELSEYGroup" target="_blank">Facebook</a></li>
						<li class="twitter"><a href="https://twitter.com/KELSEYGroup" target="_blank">Twitter</a></li>
					</ul>
				</div>
				<div class="wrap last">
					<p class="copy">&copy; 2026 Kelsey Media Ltd. Kelsey Media Ltd, Registered No. 05822990, is a trading name of Kelsey Publishing, Registered No. 02387149.</p>
					<p class="hidden"><a target="_blank" title="Digital Agency" href="https://tilt.digital">TILT</a> <a target="_blank" title="Web Design in Kent" href="https://tilt.digital">Digital Agency Kent</a> <a href="http://www.thinkwordpress.co.uk" title="Wordpress Developer">Wordpress Developer</a></p>
				</div>
			</footer>
		</div>
		
	</div>
	<style id='core-block-supports-inline-css' type='text/css'>
/**
 * Core styles: block-supports
 */

</style>
<script type='text/javascript' id='ajax-posts-js-extra'>
/* <![CDATA[ */
var tilt_ajax = {"url":"https:\/\/www.kelsey.co.uk\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='https://www.kelsey.co.uk/wp-content/themes/kelsey/assets/js/ajax-posts.js?ver%5B0%5D=jquery' id='ajax-posts-js'></script>
</body>
</html>