.kofi-container {
display: flex;
justify-content: center;
margin: 2rem 0;
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif;
}.kofi-button {
display: inline-flex;
align-items: center;
gap: 12px;
background-color: #FF5E5B; /* Classic Ko-fi Red/Coral */
color: #FFFFFF !important;
text-decoration: none !important;
padding: 12px 24px;
border-radius: 100px;
font-weight: 600;
font-size: 1.05rem;
box-shadow: 0 4px 15px rgba(255, 94, 91, 0.3);
transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}.kofi-button:hover {
background-color: #e54e4b;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 94, 91, 0.4);
}.kofi-button:active {
transform: translateY(0);
}.kofi-icon {
width: 24px;
height: 24px;
fill: currentColor;
}/* Responsive adjustment for smaller mobile screens */
@media (max-width: 480px) {
.kofi-button {
padding: 10px 18px;
font-size: 0.95rem;
gap: 8px;
}
.kofi-icon {
width: 20px;
height: 20px;
}
}
/** * CONFIGURATION: Edit your IDs and settings here
*/
const tickerConfig = {
label: “LATEST NEWS UPDATES”,
sections: [
{ id: 1, count: 8 }, // Section 2 (e.g., Sports)
// You can add a third section here if you ever need to!
],
domain: “https://thisisardee.com”,
speed: “45s” // Higher = Slower
};async function fetchTickerContent() {
const tickerContainer = document.getElementById(‘automated-ticker’);
const tickerLabel = document.getElementById(‘ticker-label’);
// Build the list of API requests based on the sections above
const requests = tickerConfig.sections.map(section =>
fetch(`${tickerConfig.domain}/wp-json/wp/v2/posts?categories=${section.id}&per_page=${section.count}`)
);try {
const responses = await Promise.all(requests);
const dataArrays = await Promise.all(responses.map(res => res.json()));
// Flatten all arrays into one single list of posts
const allPosts = dataArrays.flat();if (allPosts.length > 0) {
tickerLabel.innerText = tickerConfig.label;
tickerContainer.innerHTML = “”;
allPosts.forEach(post => {
const tickerItem = document.createElement(‘div’);
tickerItem.className = ‘ticker__item’;
// Using .rendered to ensure special characters (like quotes) display correctly
tickerItem.innerHTML = `
${post.title.rendered}`;
tickerContainer.appendChild(tickerItem);
});
}
} catch (error) {
console.error(“Ticker Error:”, error);
tickerLabel.innerText = “NEWS”;
tickerContainer.innerHTML = “
Visit ArdeePost.com for updates
“;
}
}fetchTickerContent();/* Change the look of the bar here */
.ticker-wrap {
width: 100%;
overflow: hidden;
background: #1a1a1a;
border-top: 2px solid #0056b3;
border-bottom: 2px solid #0056b3;
display: flex;
align-items: center;
box-sizing: border-box;
}.ticker-title {
background: #d32f2f;
color: white;
padding: 12px 25px;
font-weight: bold;
white-space: nowrap;
z-index: 10;
font-family: sans-serif;
}.ticker {
display: flex;
white-space: nowrap;
padding-left: 100%;
/* The speed is controlled by the config variable above */
animation: scroll-ticker 45s linear infinite;
}.ticker:hover { animation-play-state: paused; }.ticker__item {
padding: 12px 60px;
font-family: ‘Arial’, sans-serif;
}.ticker__item a {
color: #ffffff;
text-decoration: none;
font-size: 15px;
font-weight: 600;
}.ticker__item a:hover { color: #ffeb3b; }@keyframes scroll-ticker {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
Market Tracker: County-Wide Median House Price in Louth Slips Slightly to €370,000 as New Builds Hold Firm
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { –red: #c0001e; –dark: #1a1a1a; –mid: #444; –light: #f5f4f0; –border: #ddd; –accent: #0b3c5d; }
body { background: var(–light); color: var(–dark); font-family: ‘Source Serif 4’, Georgia, serif; font-size: 18px; line-height: 1.8; }
.breaking-bar { background: var(–dark); color: #fff; text-align: center; padding: 9px 16px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.site-header { background: #fff; border-bottom: 3px solid var(–dark); padding: 18px 24px 14px; text-align: center; }
.site-header .site-name { font-family: ‘Playfair Display’, serif; font-size: 38px; font-weight: 900; }
.site-header .site-name span { color: var(–red); }
.article-wrap { max-width: 780px; margin: 40px auto; padding: 0 20px 60px; }
.meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.meta-category { background: var(–dark); color: #fff; padding: 3px 9px; font-weight: 700; }
h1 { font-family: ‘Playfair Display’, serif; font-size: clamp(28px, 5vw, 44px); line-height: 1.18; font-weight: 900; margin-bottom: 20px; }
h2 { font-family: ‘Playfair Display’, serif; font-size: 24px; font-weight: 900; margin: 35px 0 15px; color: var(–dark); border-bottom: 2px solid var(–border); padding-bottom: 6px; }
.lead { font-size: 20px; font-weight: 600; line-height: 1.6; color: var(–mid); border-left: 4px solid var(–dark); padding-left: 18px; margin-bottom: 28px; }
.info-card { background: #fff; border: 1px solid var(–border); padding: 25px; margin: 25px 0; border-top: 4px solid var(–dark); }
.info-card h3 { font-family: ‘Playfair Display’, serif; color: var(–dark); margin-bottom: 12px; }
.tariff-panel { background: #fffdf3; border: 1px solid #ffe082; padding: 20px; margin: 25px 0; border-left: 5px solid #ffb300; }
.adsense-container { display: block; width: 100%; margin: 30px auto; text-align: center; overflow: hidden; }
.adsense-label { display: block; font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-family: sans-serif; }
.article-footer { margin-top: 50px; padding-top: 20px; border-top: 2px solid var(–dark); font-size: 13px; color: #888; }
.stats-table { width: 100%; border-collapse: collapse; margin: 20px 0; background: #fff; font-family: sans-serif; font-size: 16px; }
.stats-table th, .stats-table td { border: 1px solid var(–border); padding: 12px; text-align: left; }
.stats-table th { background-color: #f9f9f9; font-weight: 700; color: var(–dark); }
📊 Real Estate Watch — Latest Central Statistics Office Housing Registry Logs Released
Property Index
County Framework
18 June 2026
Affordability Realities: County-Wide Median House Price in Louth Slips Slightly to €370,000 as Buyers Turn Cautious Amid Economic Uncertainty
House hunters and estate trackers across Louth are analyzing a minor cooling trend in the local market, after the latest state registry files showed property valuations softening slightly by €5,000.
Advertisement
(adsbygoogle = window.adsbygoogle || []).push({});
📲 Track Local House Prices: Knowing the true ground-level value of property helps first-time buyers and families plan out their hard-earned mortgage applications safely. Share this straightforward, layout brief with anyone currently hunting for a home!
A slight breath taken in a hot property market. The overall baseline index across the county lines remains tightly balanced against a massive lack of supply.
Fresh official figures released by the Central Statistics Office (CSO) in their latest Residential Property Price Index report show that the county-wide median house price for **Louth** now stands at €370,000. This marks a minor decline of €5,000 compared to the metrics logged back in March, highlighting that working-class buyers are keeping a sharper eye on their budgets as interest rates and living costs challenge the market.
Steady Tracking Across the Primary Dundalk A91 Sectors in Louth
The urban center holds firm while existing housing stock sees a minor drop.
Despite the slight slide in the overarching county-wide index, residential values in the Dundalk Eircode (A91) zone remained completely static through April 2026. The median price for properties changing hands in the area stood firm at €340,000, mirroring the exact baseline tracked in March. Out of 63 houses successfully traded in Dundalk over the month, 26 were picked up by first-time buyers, 30 went to former owner-occupiers, and seven were acquired by non-occupier entities.
The internal balance between new estates and second-hand properties remains notable:
- 🏗️ New Builds: 28 new-build properties were completed and sold in Dundalk during the tracking window. The median price for these modern structures edged up by €2,500 to hit **€397,500**.
- 🏡 Existing Stock: Second-hand and established homes made up 35 of the sales. Their median value dipped by €1,500 from the previous month, settling at **€303,500**.
Drogheda A92 Metrics Witness a Minor Price Push in Louth
A heavy surge in new-build valuations contrasts with a sharp softening in older estates.
Further south along the coastal lines of **Louth**, the Drogheda (A92) residential framework showed slightly different dynamics. The overall median price of residential properties changing hands in April 2026 crawled up to €385,000, marking a slight increase of €2,500 on the previous month’s registers. A busy trading month saw 81 properties sold, with first-time buyers dominating the gate at 41 purchases, while 38 went to previous owners and two were logged to non-occupiers.
| Louth Market Zone (April 2026) | Overall Median Price | New-Build Median Price | Existing Home Median Price |
|---|
| Dundalk (A91 Sector) | €340,000 (Unchanged) | €397,500 (Up €2,500) | €303,500 (Down €1,500) |
| Drogheda (A92 Sector) | €385,000 (Up €2,500) | €417,000 (Up €11,000) | €306,000 (Down €25,000) |
The gap between old and new properties widened extensively in Drogheda. While 28 newly constructed units commanded a premium median price of €417,000 (jumping nearly €11,000 from March), the 53 existing homes sold saw their median drop significantly by €25,000 to sit at €306,000.
Advertisement
(adsbygoogle = window.adsbygoogle || []).push({});
National Comparison Logs and Affordability Concerns in Louth
Auctioneers pinpoint smaller family sizes and transit routes as vital buying factors.
On the grand national stage, the annual inflation rate for residential properties tapered down to 6.2% in the 12 months to April, slowing down from the 6.7% recorded in March. The median price of a dwelling purchased across the entire state over the past year stood at €394,980—with Dún Laoghaire-Rathdown tracking at the absolute highest apex of €685,750, while Longford maintained the lowest entry line at €197,000. Nationwide, household buyers filed 3,741 purchase agreements with the Revenue Commissioners in April alone, totaling a massive €1.63 billion in financial transactions.
Commenting on the numbers, the Institute of Professional Auctioneers & Valuers (IPAV) stated that the cooling expansion rate is entirely unsurprising given widespread economic uncertainty. Genevieve McGuirk, IPAV’s Chief Executive, indicated that field agents are noticing a general softening in prices that is far more visible in rural townlands rather than compact urban areas, with buyers exercising deep caution before signing contracts.
McGuirk added that exceptional transport links are dictating where working-class buyers invest their money, as local people strive to keep commute times to their workplaces as brief as possible. The baseline demographic consists heavily of buyers in their late 30s with smaller families, alongside an active presence from international buyers. While one-off builds face major construction roadblocks due to soaring material costs, IPAV expects structural demand to keep property markets robust across **Louth**, with all eyes on whether government planning overhauls can successfully accelerate supply.
🧱 Keep the Kids Creative This July
While tracking the latest property metrics across the county estates, make sure your family’s summer breaks are fully sorted! The highly popular Brick & Art Summer Camp is officially returning to Scoil Mhuire na Trócaire in Ardee from 13th to 17th July. Built for children aged 4–12, featuring Lego building challenges, messy art projects, and sibling discounts. Contact Elaine on 087 069 6908 to secure a position today!
(adsbygoogle = window.adsbygoogle || []).push({});
Error: Contact form not found.
. . .
[the_ad id=”10746″]