Unofficial Mills

Your ultimate destination for Scott Mills news, clips, and community discussions. Stay updated with the latest radio moments and behind-the-scenes content.


latest news


Funniest Moment

Latest News

Rylan and Scott Mills during a Radio 2 hen do

NEWS

Day 3 at Radio 1’s Big Weekend 2025

From soggy singalongs to DJs on shoulders, the final day delivered wall-to-wall moments that were equal parts ridiculous and remarkable.

May 25, 2025

Read More

DJs at Radio 1's Big Weekend 2025

NEWS

Day 2 at Radio 1’s Big Weekend 2025

The DJs are back together, the chaos is dialled up, and day two is fully underway with incredible performances.

May 25, 2025

Read More

Tom Walker at Radio 1's Big Weekend

NEWS

Scott Mills at RHS Chelsea Flower Show

BBC Radio 2 presenter Scott Mills hosted a special live broadcast from the RHS Chelsea Flower Show, celebrating dogs and gardens.

May 25, 2025

Read More

Featured Clips

Scott Mills Breakfast Show opens gates to RHS and Radio 2 Dog Garden

Flirt Divert – 11th August 2005

How Do Sarah? It’s Flirt Divert.


Explore More

Tom Grennan and Melanie C performing on the main stage during BBC Radio 1's Big Weekend at Sefton Park, Liverpool. Picture date: Friday May 23, 2025. PA Photo. Photo credit should read: Peter Byrne/PA Wire

Champions League Final – 21st May 2008

It’s the Champions League Final and Chappers is tense…


Explore More

Radio 1 DJs at Big Weekend in Liverpool

Barryoke – 30th May 2008

A Barry sings along to The Ting Tings in Barryoke.


Explore More

About Unofficial Mills

Welcome to Unofficial Mills, the fan-driven hub for everything Scott Mills! Since 2004, we’ve been your go-to source for the latest news, classic radio clips, and a vibrant community of fellow fans. From breaking news about Scott’s radio career to rare archive material and lively forum discussions, we’re here to celebrate the humor, heart, and brilliance that Scott brings to radio.


Join Our Community

Featured Clips

Picked from the Unofficial Mills archives…

Flirt Divert – 11th August 2005

How Do Sarah? It’s Flirt Divert.

Champions League Final – 21st May 2008

It’s the Champions League Final and Chappers is tense…

Barryoke – 30th May 2008

A Barry sings along to The Ting Tings in Barryoke.


Explore All Archives

Latest Forum Discussions

Scott’s 8am Song

April 15, 2025

BBC Introducing Extended and Radio 1 20s to launch

March 26, 2025

Where is Chris Stark?

March 24, 2025

International listeners of The Scott Mills Show

March 23, 2025


Explore All Archives



<!– Swiper CSS –>
<link rel=”stylesheet” href=”https://unpkg.com/swiper/swiper-bundle.min.css”/>

<!– Carousel Container –>
<div class=”swiper mySwiper”>
<div class=”swiper-wrapper”>
<!– Your shortcode here –>


</div>

<!– Navigation buttons –>
<div class=”swiper-button-next”></div>
<div class=”swiper-button-prev”></div>
</div>

<!– Swiper JS –>
<script src=”https://unpkg.com/swiper/swiper-bundle.min.js”></script>

<!– Swiper Init –>
<script>
document.addEventListener(“DOMContentLoaded”, function() {
// Select all direct children of .swiper-wrapper and add swiper-slide class
const wrapper = document.querySelector(‘.swiper-wrapper’);
if (wrapper) {
const children = wrapper.children;
for (let i = 0; i < children.length; i++) {
children[i].classList.add(‘swiper-slide’);
children[i].style.width = ‘100%’; // force full slide width
}
}

// Init Swiper
new Swiper(“.mySwiper”, {
slidesPerView: 3,
spaceBetween: 30,
loop: true,
navigation: {
nextEl: “.swiper-button-next”,
prevEl: “.swiper-button-prev”
},
breakpoints: {
1200: {
slidesPerView: 3
},
768: {
slidesPerView: 2
},
0: {
slidesPerView: 1
}
}
});
});
</script>

<!– Optional Styling –>
<style>
.swiper {
padding: 20px 0;
}

.swiper-slide {
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
border-radius: 10px;
overflow: hidden;
background: #fff;
transition: transform 0.3s ease;
}

.swiper-slide:hover {
transform: translateY(-5px);
}

/* Prevent shortcode container from forcing 2 columns */
.swiper-wrapper {
display: flex !important;
flex-wrap: nowrap !important;
}
</style>