Laying up and maintaining your car (2024)

x

Laying up and maintaining your car (1)

The AA theaa.com FREE - In Google Play!

View

');$businessLinkMobileCount = $('.business-customer-mobile').length;if ($areYouBusinessCustomer.length && $businessLinkMobileCount == 0) {$mobileBusinessCustomerLink.html($areYouBusinessCustomer.html());$('.mobile-grey').append($mobileBusinessCustomerLink);}if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {// console.log("smaller than breakpoint");$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");$('#mainNavigation').addClass('mobile-main-nav').removeClass('desktop-main-nav');$('.mobile-grey').appendTo('.desktop-white');$('nav.aa-mega-menu').addClass('mobile-nav');if (!$('.scroller').length) {$('#site-header-yellow >.wrapper').wrap("

");}$('.mobile-tablet-menu').animate({ width: 'show' }, 30);$primaryHeadingCount = 0;$("#mainNavigation > ul > li.primary").each(function () {$primaryHeadingForMobile = $('

  • ');$firstColumnOfMegaMenu = $(this).find("nav > div > ul:nth-child(1)");$anchor = $($(this).children()[0]);anchorHtmlText = $anchor.html();$primaryHeadingForMobile.html(anchorHtmlText);var primaryNavCount = $(".primary.childrens").length;$primaryHeadingCount = $('.primary-heading').length;if ($primaryHeadingCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend($primaryHeadingForMobile);}$backLinkMobileCount = $('.backLink').length;if ($backLinkMobileCount < primaryNavCount) {$firstColumnOfMegaMenu.prepend('

  • ');}});$('.main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {mobileCloseClick(e);$(".left.logo").focus();}});}else if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$('.left.logo').animate({ width: 'show' }, 30);$('.mobile-grey').appendTo('.top-header-links');$('nav.aa-mega-menu').removeClass('mobile-nav');$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('#mainNavigation').addClass('desktop-main-nav').removeClass('mobile-main-nav');$(".campaign-hero ").parents(':eq(2)').css('padding', '0')if ($('.scroller').length) {$('#site-header-yellow >.wrapper').unwrap("

    ");}$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);$('button > hr').css({"opacity": "0","visibility": "hidden"});$('.aa-mega-menu').css({"opacity": "0","visibility": "hidden"});$('.right.mobile-grey').show();$('#mainNavigation > ul.aa-main-nav > li.primary > button').keydown(function (e) {if (e.which === 13 || e.keyCode === 13) { /// for ENTER pressconst boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'true');});//remove active mega menu from HOVER if open if ($currentHoverMenuItem) {var $primaryNavigationListItem = $currentHoverMenuItem.parent();$currentHoverMenuItem.removeClass('menu-active').css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$currentHoverMenuItem = null;}applyMenuHoverInEffects($(this).parent());$('#mainContent').removeAttr("style");$('#mainContent').css({"opacity": "0.5","height": "calc(100% - 225px)","width": "100%","visibility": "visible","background-color": "#000","position": "absolute",// "top": "134px","left": "0px","z-index": "1"});$('#mainContent').addClass('menu-base-transition');$currentActiveMenuItem = $(this).parent().find('.aa-mega-menu');$currentActiveMenuItem.toggleClass("menu-active");// $('.column .sub-menu.col').animate({ width: 'show' }, 300);}else if (e.which === 9 || e.keyCode === 9) { // for TAB pressif ($currentActiveMenuItem) {e.preventDefault();var $firstAnchorOfMegaMenu = $($currentActiveMenuItem.find('div > ul:first-child > li:first-child > a')[0]);$firstAnchorOfMegaMenu.focus();}}});//get all last anchor items from all mega menus and attach key down event for Tab transer$("#mainNavigation > ul > li > nav > div > ul:last-child li:last-child a").keydown(function (e) {if (e.which === 9 || e.keyCode === 9) {console.log("tabbed...");$currentActiveMenuItem.removeClass('menu-active');var $nextPrimayNavItem = $currentActiveMenuItem.parent();if ($nextPrimayNavItem) {applyMenuHoverOutEffects($nextPrimayNavItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$nextPrimayNavItem.find('button')[0].focus();$currentActiveMenuItem = null;}else {//this will happen for very last anchor of last mega menu. there is no next menu item to focus to//so focus should be move to mainContent$('#mainContent').focus();}}});//for escape key- close the drop down menu if its open$('#mainNavigation > ul.aa-main-nav').keydown(function (e) {if (e.which === 27 || e.keyCode === 27) {if ($currentActiveMenuItem) {var $primaryNavListItem = $currentActiveMenuItem.parent()applyMenuHoverOutEffects($primaryNavListItem);$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');$primaryNavListItem.find('button')[0].focus();$currentActiveMenuItem = null;}const boxes = document.querySelectorAll('.anchor');boxes.forEach((box, index) => {box.setAttribute('aria-expanded', 'false');});}});//when user mouse hovers from outside menu area then menu needs to animate with set transitions defined in css//but as sson as it enter menu are we need to remove animation transitions which are enabled. so differnt animation menu can be opened quickly$('#mainNavigation > ul.aa-main-nav').hover(function () {removeAnimation = true;}, function () {$('body').removeClass('notransition');removeAnimation = false;//this condition is added because after multiple ESC and TAB press somehow UL mouseout event was triggering and//it was causing background to set default yellow colorif ($currentActiveMenuItem == null) {$('header#site-header-yellow').css('background', defaultBgColor).removeClass('bg-change');}});}if ($('#mainNavigation').hasClass('desktop-main-nav')) {$('.desktop-main-nav > ul.aa-main-nav > li.primary').hover(function () {// console.log("applying hover effects");$currentHoverMenuItem = $(this).find('.aa-mega-menu');//remove menu-active class from active mega menu from keyboard if open if ($currentActiveMenuItem) {var $primaryNavigationListItem = $currentActiveMenuItem.parent();$currentActiveMenuItem.removeClass('menu-active').removeAttr("style");var $menuUnderLine = $primaryNavigationListItem.find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});//If hover element and active keyboard element is not same then set active elment to null . giving preference to hoverif ($currentActiveMenuItem[0] != $currentHoverMenuItem[0])$currentActiveMenuItem = null;}applyMenuHoverInEffects(this);if (removeAnimation) {setTimeout(function () {$('body').addClass('notransition');}, 500);removeAnimation = false;}$('#mainContent').removeAttr("style");$('#mainContent').css({ "visibility": "visible" });$('#mainContent').addClass('menu-base-transition');}, function () {$currentHoverMenuItem = null;applyMenuHoverOutEffects(this);});}applyMenuHoverInEffects = function ($primaryNavElement) {// console.log("In applyMenuHoverInEffects");$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');$megaMenu.css({"opacity": "1","visibility": "visible"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "1","visibility": "visible"});//change header background with css transition class$('header#site-header-yellow').css('background', '#fff').addClass('bg-change');$('header#site-header-yellow').addClass('menu-base-transition');}applyMenuHoverOutEffects = function ($primaryNavElement) {$this = $primaryNavElement;var $megaMenu = $($this).find('.aa-mega-menu');if (window.aa.helpers.cache.cachedElements.$window.width() > mobileBreakpoint) {$megaMenu.css({"opacity": "0","visibility": "hidden"});var $menuUnderLine = $($this).find('button > hr');$menuUnderLine.css({"opacity": "0","visibility": "hidden"});$('#mainContent').css({"visibility": "hidden",});}}$('header#site-header-yellow .main-nav ul.aa-main-nav > li').each(function () {if ($(this).find(".aa-mega-menu").length) {$(this).addClass('childrens')}});function mobileCloseClick(e) {// console.log("Mobille close called");e.preventDefault();$('body').removeClass("fixed-position");$('body').removeClass('mmenu-opened');$('header#site-header-yellow .main-nav').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active').animate({ right: '-100vw' }, 0);$('header#site-header-yellow.mobilemenu-active .scroller').animate({ right: '-100vw' }, 0);setTimeout(function () { $('#site-header-yellow').removeClass('mobilemenu-active') }, 0);$('.left.logo').animate({ width: 'show' }, 0);$('.mobile-tablet-menu').animate({ width: 'show' }, 0);$('.right.mobile-grey').show();$('#mainContent').removeAttr("style");const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'false');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'false');$('.main-nav').css('min-height', 'auto');if ($('.aa-mega-menu').hasClass('secondlevelOpen')) {$('.aa-mega-menu').stop().animate({ 'right': '-100vw' }, 0);primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');$('.aa-mega-menu').removeClass('secondlevelOpen');}$(".scroller").css("height", "100vh");$(".left.logo a").focus();$(".mobile-grey a, .nav-logo a ").attr("tabindex", "-1");$("#mainNavigation button, .mobile-tablet-menu-open ").attr("disabled", "disabled");setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 0);}$('.mobile-tablet-menu').click(function (e) {e.preventDefault();$('body').addClass("fixed-position");$(".mobile-grey a, .nav-logo a ").removeAttr("tabindex");$("#mainNavigation button, .mobile-tablet-menu-open ").removeAttr("disabled");$('header#site-header-yellow .main-nav').animate({ right: '0' }, 300);$('.scroller').animate({ right: '0' }, 300);$('.left.logo').animate({ width: 'hide' }, 300);$('.mobile-tablet-menu').animate({ width: 'hide' }, 0);if ($('.scroller').length) {$('#site-header-yellow').addClass('mobilemenu-active');}var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', 'auto');const mobilemenuButton = document.querySelectorAll('.mobile-tablet-menu');mobilemenuButton[0].setAttribute('aria-expanded', 'true');const mobilemenuButtonOpen = document.querySelectorAll('.mobile-tablet-menu-open');mobilemenuButtonOpen[0].setAttribute('aria-expanded', 'true');$(".scroller").css("height", (Math.max(document.documentElement.clientHeight, window.innerHeight || 0) - $("#site-header-yellow").offset().top));$(".left.menu-logo a").focus();});$('.mobile-tablet-menu-open').click(function (e) {// changes for CD-50114 startmobileCloseClick(e);// changes for CD-50114 end});var primaryItem = $('li.primary.childrens > button');var backlink = $('li.backLink > button');if (window.aa.helpers.cache.cachedElements.$window.width() <= mobileBreakpoint) {primaryItem.on('click', function (e) {console.log('primaryItem.on(click, function (e) ---');e.preventDefault();var megaHeight = $(this).next('.aa-mega-menu').height() + 120;$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '0' }, 300);$(this).parent('li').removeClass('hide-menu');$(this).addClass('hide-menu');$(this).parent('li').siblings('li').addClass('hide-menu').removeClass('activated');$(this).parent('li').addClass('activated');$(this).next('.aa-mega-menu').addClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', megaHeight);$('.main-nav').css('min-height', 'auto');$('.right.mobile-grey').hide();$('.column .sub-menu.col').animate({ width: 'show' }, 300);// $(".backLink button").focus();$(".left.menu-logo a").focus();});backlink.on('click', function (e) {e.stopPropagation();$(".secondlevelOpen").stop().animate({ width: 'hide' }, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').stop().animate({ right: '-100vw' }, 300);$(this).parent('li').find('nav.aa-mega-menu.mobile-nav').stop().animate({ right: '-100vw' }, 300);setTimeout(function () {$('.right.mobile-grey').show();}, 300);$('.column .sub-menu.col').animate({ width: 'hide' }, 300);setTimeout(function () {primaryItem.parent('li').find('.anchor').removeClass('hide-menu');primaryItem.parent('li').siblings('li').removeClass('hide-menu').removeClass('activated');}, 300);$(this).parent('li').parent().parent().parent('.aa-mega-menu').removeClass('secondlevelOpen');$(this).next('.aa-mega-menu').css('height', 'auto');var primaryHeight = $('.main-nav').height() + 120;$('.main-nav').css('min-height', primaryHeight);});};window.aa.MenuSetupCompleted = true;}

    Skip to main content [Accesskey 'S'] Go to home page [Accesskey '1']Are you a business customer?

    • Broken down?
    • Route Planner
    • Help and support

    How to maintain your car when not driving regularly

    When regional or national driving restrictions are in place, it's important to know what to do with your car and how to maintain it, which depends on how long you’re leaving it idle. For example, you may be using it to top up on food and suppliesor driving it if you work in an essential job or industry. On the other hand, you may not need or want to use your car for a lot longer, such as during a lockdown.

    Remember that even if you’re not using it, you’ll still have to have a valid MOT and insure your car unless you make aStatutory Off Road Notification (SORN). You can only make a SORN if the it’s being kept off the road.

    Here are some commonly asked questions and our advice. You'll find more tips on our car maintenance page.

    How long can you leave a car without starting?

    How long you leave a car without starting can depend on the condition of your car's 12-volt battery. Most modern cars with a fairly healthy battery should last at least 2 weeks, without needing to be started up to re-charge the battery. If there’s any doubt about the condition of the battery, start it once a week just to be safe.

    What happens if you don’t drive a car for a long time?

    Even if you haven't driven for a while your car should be fine. If it's been regularly started and run for 15-minute periods, the battery should work. The tyre pressures should be checked and adjusted before driving. The brakes may have some corrosion on them, especially if the car was wet when it was parked up. Drive carefully and test the brakes as soon as possible. Make sure you use your brakes for the first few miles to clean off any corrosion.

    Is it bad to leave a car unused?

    Cars are made to be driven but with good care it should be fine. If it's left unused follow ourguidelines.

    Can I leave my car parked for a month?

    Yes, but it's best to follow theseguidelines to keep the car ready to drive.

    How long can a car sit before the battery dies?

    As we've said above, there are many factors that can affect this. The age of the battery, how the car's been used and the temperature all affect the performance of a battery. If you follow ourguidelines your battery shouldn’t let you down.

    Find out more about:

    • Flat batteries

    What if my MOT expires?

    Having a valid MOT is still required by law unless your vehicle is declared off-road with a Statutory Off Road Notification (SORN). You’ll find all you need on our dedicated MOT page.

    Here are a few simple tips onhow to keep your car lasting longerand ready to use when you need it again.

    Leaving your car parked for up to a month
    • Fuel– Before parking your car up for a long period, it’s a good idea to top up with fuel. Not only will this help with other measures, but a full tank doesn't attract condensation, which could cause issues if allowed to build up over time.
    • Battery maintenance – As the government has eased the lockdown rules, it is now acceptable for you to take your car out more regularly, for essential travel. This includes travel to locations to exercise, visit re-opened retail establishments and other essential journeys. In order to be beneficial to your car’s battery, this needs to be a journey of 15 minutes or more. If you aren’t in a position to, or don’t want to make such a journey you can connect your car's battery to a mains-powered battery maintainer or continue to start the engine once a week and allow it to run for about 15 minutes.This will re-charge the battery and help keep the engine in good condition. It’s important to allow the engine to run for this long so the battery can charge properly. In the case of petrol engine cars, it also helps to prevent engines from flooding with fuel. Never leave your car unattended with the engine running.
    • Brakes – Sometimes when a car's parked up for a long period with the parking brake on, the brakes can seize. To prevent this it's good practice to release the parking brake and move the vehicle a short distance back and forth, at the same time as running the engine. You shouldn’t leave the parking brake off unless the vehicle is on private land with the wheels securely chocked.
    • Electric vehicles – EVs and hybrid vehicles have 12-volt batteries, the same as conventional cars. However, they charge differently. Pressing the start button, so the ready light comes on, will operate the charging system. Doing this for 10 minutes once a week should keep the 12-volt battery topped up. Some electric and plug-in hybrid vehicles can maintain their 12-volt batteries if they’re plugged in to the mains charger. Check your vehicle handbook for details on this.
    • Garages – Don’t run a car engine inside a household garage as the exhaust fumes can be toxic. If you keep your car in a garage, pull it out onto the drive to run the engine to charge the battery.
    • Tyres – Before driving the car after a long period parked up, check all of the tyre pressuresand inflate if needed.

    Laying up and maintaining your car (2)

    How to store a car for 3 months

    As well as the 'one month' points above:

    • Clean and polish the car.
    • Make sure the car’s dry if you’re storing in a garage.
    • Consider a refund on your car tax by making a Statutory Off Road Notification (SORN).
    • You may also be able to reduce your insurance cover to fire and theft only.
    • If the car's in a garage, make sure there's plenty of ventilation.
    Over three months

    As well as the one month and three month points:

    • Check your oil level and change if needed
    • Arrange for an 'oil and filter' service
    • Lubricate locks
    Storing petrol and diesel
    • Petrol stays fresh in a sealed container for about a year but starts to degrade in as little as a month when exposed to the air.
    • Stored diesel should be OK for up to a year.
    • Diesel fuel specs change through the year – summer diesel will be much more susceptible to waxing in cold weather than winter diesel.
    • Condensation in the fuel tank is bad news and can lead to corrosion, water in the fuel and, in diesels, bacterial and fungal growth. Unless you can ensure a dry stable environment, it’s best to store your car with a full tank of fuel to reduce the space for water to condense.
    Getting back on the road

    Before you start a car you haven’t used for a long time:

    • Check that the MOT and car tax are still current.
      • Taxing the car will cancel any SORN.
      • If you need an MOT, you can only drive the car if it’s to a garage for a pre-booked MOT.
    • Check tyre pressures.
    • Check nothing’s nesting under the bonnet or has chewed through the pipes/hoses.
    • Check all fluid levels, before starting the engine.
    • Check the brakes, including the handbrake – they may have seized up if the car was left with the handbrake on. Try putting into gear and driving gently.

    Arrange a full service once it’s running again if your car’s been standing for a long time.

    Laying up a classic car

    Owners of classic cars often refer to leaving a car unused as ‘laying up’ – usually done over the winter to avoid corrosion from cold/damp weather and salted roads. Corrosion isn’t a problem in very cold weather, as long as the car's dry and free from road salt.

    Things to think about if you’re ‘laying up’ a classic car:

    • Spraying unpainted metal parts with WD40 will reduce corrosion.
    • Spray under the bonnet, around the battery box, under the wings and the metal in the boot area with WD40 or similar.
    • Hose under the wheel arches to remove mud, but make sure the car’s dry before you put it away.
    • Check that drain holes in doors, sills and bulkhead/heater aren’t blocked.
    • If you’re really keen you could seal the garage and use a dehumidifier, instead of ventilating it. A dehumidifier’s cheaper and probably better than heating but will need a low-temperature shut-off – they can't work below about 4C.
    • If you suspect damp, raise or take out the carpets and dry thoroughly.
    • Slacken auxiliary drive belts – alternator, power steering, air conditioning, etc. But don't slacken the camshaft drive belt.
    • Lift the car onto blocks or stands to raise the wheels clear of the ground, and un-stress the tyres.
    • If you can, take off the wheels and store them flat in a cool, dark place.
    • Lift wiper arms so the blades don’t lie on the glass.
    • Make a note of what you've done to the car and put it in the car, as a reminder when you need to use it again.

    Published: 30 March 2016 | Updated:4 November 2020

    Car maintenance tips
    • Checklist to pass your MOT
    • Maintenance tips for savvy drivers
    • Replace your car's battery
    • Repairs and your legal rights
    • Motor Industry Code of Practice
    • Complete guide to car services
    • How to remove car scratches

    Buy breakdown cover

    We get more people back on the road than anyone else

    Buy now

    Broken down?

  • Laying up and maintaining your car (2024)
    Top Articles
    Latest Posts
    Article information

    Author: Ray Christiansen

    Last Updated:

    Views: 6523

    Rating: 4.9 / 5 (49 voted)

    Reviews: 88% of readers found this page helpful

    Author information

    Name: Ray Christiansen

    Birthday: 1998-05-04

    Address: Apt. 814 34339 Sauer Islands, Hirtheville, GA 02446-8771

    Phone: +337636892828

    Job: Lead Hospitality Designer

    Hobby: Urban exploration, Tai chi, Lockpicking, Fashion, Gunsmithing, Pottery, Geocaching

    Introduction: My name is Ray Christiansen, I am a fair, good, cute, gentle, vast, glamorous, excited person who loves writing and wants to share my knowledge and understanding with you.