.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%); }
}
Pizza Craze: Domino’s Pizza Confirms Grand Opening Date for Brand New Store on Ardee’s Castle Street
*, *::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(–red); color: #fff; text-align: center; padding: 9px 16px; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.8; } 100% { opacity: 1; } }
.site-header { background: #fff; border-bottom: 5px solid var(–red); padding: 15px 24px 10px; text-align: center; }
.site-header .site-name { font-family: ‘Playfair Display’, serif; font-size: 46px; font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase; }
.site-header .site-name span { color: var(–red); }
.article-wrap { max-width: 740px; margin: 30px auto; padding: 0 15px 60px; }
.meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; }
.meta-category { background: var(–red); color: #fff; padding: 4px 10px; font-weight: 900; }
h1 { font-family: ‘Playfair Display’, serif; font-size: clamp(32px, 6vw, 52px); line-height: 1.05; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 25px; color: var(–dark); text-transform: uppercase; }
h2 { font-family: ‘Playfair Display’, serif; font-size: 26px; font-weight: 900; margin: 35px 0 15px; color: var(–red); text-transform: uppercase; border-bottom: 3px solid var(–red); padding-bottom: 4px; }
.lead { font-size: 22px; font-weight: 800; line-height: 1.4; color: var(–dark); background: #fff5f5; border-left: 6px solid var(–red); padding: 15px; margin-bottom: 30px; }
.info-card { background: #fff; border: 2px solid var(–dark); padding: 20px; margin: 30px 0; box-shadow: 5px 5px 0px var(–red); }
.info-card h3 { font-family: ‘Playfair Display’, serif; font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(–dark); margin-bottom: 12px; }
.tariff-panel { background: #fffdeb; border: 2px dashed #ffb300; padding: 20px; margin: 25px 0; }
.tariff-panel h3 { font-family: ‘Playfair Display’, serif; font-size: 20px; color: #b7791f; text-transform: uppercase; margin-bottom: 8px; }
.adsense-container { display: block; width: 100%; margin: 35px auto; text-align: center; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 15px 0; }
.adsense-label { display: block; font-size: 9px; color: #999; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 8px; font-family: sans-serif; font-weight: bold; }
.article-footer { margin-top: 60px; padding-top: 25px; border-top: 4px solid var(–dark); font-size: 12px; font-weight: bold; color: #555; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
🚨 FLAVOUR ALERT: HIGH-PROFILE TAKEAWAY BLUEPRINTS ACTIVATED FOR MAIN STREET CORRIDOR! 🚨
GRAND OPENING
CASTLE STREET
19 June 2026
SLICE OF THE ACTION: DOMINO’S PIZZA REVEALS OFFICIAL LAUNCH DATE FOR NEW ARDEE OUTPOST SPARKING MASSIVE CELEBRATIONS AND LOCAL JOB ROLES!
Fast-food trackers and late-night diners across the parish are celebrating a major retail arrival today, as the nation’s favourite pizza brand prepares to throw open its brand-new ovens in Ardee.
HOT ADVERTISEMENT
(adsbygoogle = window.adsbygoogle || []).push({});
📲 CLAIM YOUR FREE PIZZA SUNDAY: The first customer on the scene walks away with a completely free order, plus loads of cool merch loops from the DoMobile crew. Share this explosive opening timetable with your group chats!
A massive commercial expansion is officially hitting the central town blocks this week, providing a top-tier delivery and collection system for the neighborhood. Handcrafted pizza tracking logs are set to go live in just forty-eight hours.
Domino’s has formally locked down its calendar coordinates, confirming that its famous freshly baked pizza lines will officially arrive in **Ardee** on **Sunday, 21st June**. The new takeaway hub is situated in a high-footfall location at **21 Castle Street (A92 Y0CR)**, operating on a seven-day matrix from **12:00 PM noon until 00:00 AM midnight** to capture lunch crowds, dinner rushes, and late-night treat searchers alike.
Ribbon Cutting and Free Food on Castle Street
Franchisee teams orchestrate a celebratory grand opening party to greet the local neighborhood.
To celebrate the highly anticipated milestone, store managers are coordinating a massive public launch party starting at 12:00 PM sharp on Sunday, 21st June. Local pizza enthusiasts are invited to flock down to the Castle Street site to dive into the entertainment. In a brilliant promotional twist, the absolute **first customer to clear the counter doors will receive their entire order for free**, while early crowds can snap up official Domino’s merchandise and capture custom photographs alongside the iconic, travelling *DoMobile* vehicle.
Securing a prominent footprint in Mid-Louth has been a priority for the corporate brand partners for quite some time.
“We have been looking for the perfect location in **Ardee** for some time, and we are delighted to finally have a date in the diary,” confirmed Kellie Taylor, the dedicated Domino’s franchisee spearheading the local launch. “We are incredibly excited to serve the community with our delicious pizza, whether by high-speed home delivery or rapid collection in-store. We want our opening day to be a real celebration for the neighborhood, so we’d love to see as many people as possible coming down to cut the ribbon and grab a slice of the action.”
📋 THE DOMINO’S ARDEE STORE REGISTRY
The operational perimeters for the brand-new Castle Street outlet are locked in down to the minute:
- 📍 The Address: 21 Castle Street, Ardee, Co. Louth (A92 Y0CR).
- ⏱️ The Time Slot: 12:00 PM Noon to 12:00 AM Midnight, 7 days a week.
- 🚚 Service Grid: Fully un-throttled hot delivery trucks and instant counter collection.
- 🤝 Opening Party: Sunday, 21st June at 12:00 PM with free food for customer No. 1.
HOT ADVERTISEMENT
(adsbygoogle = window.adsbygoogle || []).push({});
Make Extra ‘Dough’: Local Recruitment Drive Initiated
Dozens of working-class job roles opened up for delivery drivers, pizza-makers, and management assets.
In addition to feeding the parish, the new Castle Street establishment is providing a massive employment boost for local workers. Domino’s is actively looking to expand its regional crew immediately, launching a recruitment drive for an array of flexible and full-time roles, which includes shift managers, in-store pizza-makers, and delivery drivers who know the local link roads like the back of their hand.
For those looking to make some extra ‘dough’ on a weekly baseline, applications are being processed immediately. Local candidates are instructed to make direct contact with human resources by emailing their CV tracking logs straight to **recruitment@dominosireland.com** to secure a position on the founding store team.
🧱 KEEP THE LITTLE ONES CREATIVE THIS JULY!
While the new Domino’s crew prepares to fire up the Castle Street ovens, make sure your family’s summer breaks are fully secured! The legendary Brick & Art Summer Camp is officially exploding back into Scoil Mhuire na Trócaire in Ardee from 13th to 17th July! Built for kids aged 4–12, featuring mind-blowing Lego building challenges, wild art experiments, and handy sibling discounts. Ring Elaine on 087 069 6908 to lock in a slot before they are wiped clean!
(adsbygoogle = window.adsbygoogle || []).push({});
Error: Contact form not found.
. . .
[the_ad id=”10746″]