Articles Archive

Mental Health Advice and Insights from Our Therapists

Whether you are exploring therapy for the first time or looking to better understand what you are going through, our Guidance Centre is here to help.

featured article

What's the Difference Between Counselling and Psychotherapy?

Clearing up one of the most common questions we're asked

Cover image for “What's the Difference Between Counselling and Psychotherapy?”, an NI Counselling article about counselling and therapy
function initCategoryScroll() { const pills = document.querySelectorAll("p.framer-text"); const sections = document.querySelectorAll("h2.framer-text"); if (pills.length === 0 || sections.length === 0) return false; pills.forEach(function (pill) { pill.style.cursor = "pointer"; pill.addEventListener("click", function () { const pillText = pill.textContent.trim().toLowerCase(); sections.forEach(function (heading) { if (heading.textContent.trim().toLowerCase() === pillText) { heading.scrollIntoView({ behavior: "smooth", block: "start" }); } }); }); }); return true; } // Keep trying until elements exist const observer = new MutationObserver(function () { if (initCategoryScroll()) { observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true });