This winter has been a season full of connection, celebration and community at Home-Start Winchester and Districts. From five joyful Christmas parties bringing together 59 families, to festive hampers, gifts and vital support reaching those who needed it most, we’ve seen kindness in action across our district. We’ve also welcomed seven new volunteers, strengthened valued partnerships, launched new groups – including support for neurodiverse parents – and continued to grow our outreach into 2026. Thank you to everyone who has helped make such a difference for local families during this special season.
Run for us...Raise £150
Click here for more details
//script tags removed
let lastScrollTop = 0;
const header = document.getElementById("mainheader");
window.addEventListener("scroll", function () {
const currentScroll = window.pageYOffset || document.documentElement.scrollTop;
if (currentScroll > lastScrollTop) {
// Scrolling down
header.style.transform = "translateY(-100%)";
} else {
// Scrolling up
header.style.transform = "translateY(0)";
}
lastScrollTop = currentScroll <= 0 ? 0 : currentScroll;
});