Your basket is empty.
Electric Heater with 24 Hour Timer and 3 Heat Settings 750W 1250W 2000W
£24.95
49 in stock
Description
/* Base Styles */
body {
font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, “Helvetica Neue”, Arial, sans-serif;
background: #f8f8f8;
margin: 0;
padding: 0;
}
.content h1 {
text-align: center;
}
a {
text-decoration: none;
}
.header,
.navbar,
.sidebar,
.content {
background-color: #fff;
padding: 10px;
border-bottom: 1px solid #ddd;
}
.header {
text-align: center;
}
.header img {
width: 150px;
}
.navbar {
display: flex;
justify-content: center;
}
.navbar a {
color: #333;
padding: 10px 15px;
font-size: 16px;
}
.navbar a:hover {
color: #5c5c5c;
}
.highlight-box {
text-align: center;
}
.sidebar {
max-width: 600px; /* Limits width while keeping it responsive */
padding: 15px;
background-color: #f8f8f8;
border-left: 1px solid #ddd;
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
border-radius: 5px;
margin: auto; /* Centers it */
}
.sidebar h2 {
font-size: 20px;
margin-bottom: 10px;
color: #333;
text-align: left;
}
.categories-container {
display: flex;
flex-wrap: wrap;
gap: 8px;
justify-content: flex-start; /* Align left but allow wrapping */
}
.category-button {
background-color: #5c5c5c;
color: white;
text-decoration: none;
padding: 10px 15px;
border-radius: 5px;
font-size: 14px;
text-align: center;
flex-grow: 1;
min-width: 120px;
max-width: calc(33.33% – 10px); /* Allows 3 buttons per row */
transition: background-color 0.3s ease;
}
/* Large screens – 4 buttons per row */
@media screen and (min-width: 1024px) {
.category-button {
max-width: calc(25% – 10px); /* 4 buttons per row */
}
}
/* Medium screens – 2 buttons per row */
@media screen and (max-width: 1023px) {
.category-button {
max-width: calc(50% – 10px); /* 2 buttons per row */
}
}
/* Small screens – 1 button per row */
@media screen and (max-width: 600px) {
.category-button {
max-width: 100%; /* Full width on mobile */
}
}
.category-button:hover {
background-color: #333;
color: white;
text-decoration: none;
}
.delivery-graphic {
text-align: center;
margin-top: 15px;
}
.delivery-graphic img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
.category-button:hover {
background-color: #333;
}
.delivery-graphic {
text-align: center;
margin-top: 15px;
}
.delivery-graphic img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
.content {
margin-left: 0px;
padding: 20px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.product-container {
display: flex;
justify-content: center;
align-items: flex-start;
}
.product-image-container {
position: relative;
width: 100%;
max-width: 500px;
margin-right: 20px;
}
.product-image {
width: 100%;
max-width: 500px;
border: 1px solid #ddd;
margin-bottom: 20px;
display: none;
}
.product-image.active {
display: block;
}
.thumbnails {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
}
.thumbnail-label {
cursor: pointer;
}
.thumbnail-label img {
width: 100px;
height: auto;
border: 1px solid #ddd;
border-radius: 5px;
}
.thumbnail-label img:hover {
border-color: #5c5c5c;
}
.thumbnail-radio {
display: none;
}
.product-image-container input[type=”radio”]:nth-of-type(1):checked~.img1,
.product-image-container input[type=”radio”]:nth-of-type(2):checked~.img2,
.product-image-container input[type=”radio”]:nth-of-type(3):checked~.img3,
.product-image-container input[type=”radio”]:nth-of-type(4):checked~.img4,
.product-image-container input[type=”radio”]:nth-of-type(5):checked~.img5,
.product-image-container input[type=”radio”]:nth-of-type(6):checked~.img6,
.product-image-container input[type=”radio”]:nth-of-type(7):checked~.img7,
.product-image-container input[type=”radio”]:nth-of-type(8):checked~.img8 {
display: block;
}
.centered-container {
display: flex;
justify-content: center;
align-items: center;
padding: 20px 0; /* Adds equal spacing above and below */
margin: 20px 0; /* Ensures a consistent gap */
}
.btn-primary,
.btn-secondary,
.btn-blue {
display: block;
padding: 10px 20px;
font-size: 16px;
color: white;
border-radius: 5px;
margin: 10px 0;
text-align: center;
text-decoration: none;
}
.btn-primary {
display: block;
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #ff0000;
border-radius: 5px;
text-align: center;
text-decoration: none;
margin: 20px auto; /* Ensures even spacing and centering */
}
.btn-primary:hover {
background-color: #cc0000;
}
.btn-secondary {
background-color: #f8f8f8;
color: #333;
border: 1px solid #ddd;
}
.btn-secondary:hover {
background-color: #5c5c5c;
}
.btn-blue {
background-color: #007bff;
transition: background-color 0.3s ease;
}
.btn-blue:hover {
background-color: #5c5c5c;
}
.price-box {
border: 1px solid #ddd;
padding: 20px;
text-align: center;
margin: 20px 0;
background: #fff;
}
.price-box .rrp {
text-decoration: line-through;
color: #777;
font-size: 18px;
}
.price-box .discounted-price {
font-size: 28px;
color: #e60000;
font-weight: bold;
margin-top: 5px;
margin-bottom: 15px;
}
.signup-now {
background-color: #5c5c5c;
padding: 10px;
text-align: center;
margin: 20px 0;
font-size: 18px;
border-radius: 5px;
}
.signup-now:hover {
background-color: #333;
}
.flag-container {
text-align: center;
margin-top: 20px;
}
.flag-container img {
width: 50px;
margin-right: 10px;
vertical-align: middle;
}
.flag-container span {
font-size: 18px;
font-weight: bold;
}
.tabs-container {
display: flex;
justify-content: center;
padding: 0;
margin-top: 10px;
width: 100%;
box-sizing: border-box;
}
.tabs {
display: flex;
list-style-type: none;
padding: 0;
justify-content: center;
margin: 0 auto;
flex-wrap: wrap;
}
.tabs li {
margin: 0 5px;
}
.tabs label {
padding: 10px 20px;
background-color: #5c5c5c;
color: white;
cursor: pointer;
font-size: 16px;
border-radius: 5px 5px 0 0;
transition: background-color 0.3s ease;
}
.tabs input[type=”radio”]:checked+label {
background-color: #333;
border-bottom: 1px solid white;
}
.tab-label:hover {
background-color: #333;
}
.tab-content-container {
display: flex;
justify-content: center;
width: 100%;
box-sizing: border-box;
margin-top: 20px;
}
.tab-content {
display: none;
padding: 20px;
border: 1px solid #ccc;
width: 100%;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
background-color: white;
}
#tab1:checked~.tab-content-container #content1,
#tab2:checked~.tab-content-container #content2,
#tab3:checked~.tab-content-container #content3,
#tab4:checked~.tab-content-container #content4,
#tab5:checked~.tab-content-container #content5 {
display: block;
}
.tab input[type=”radio”] {
display: none;
}
.delivery-graphic {
text-align: center;
margin-top: 20px;
}
.delivery-graphic img {
width: 100%;
max-width: 250px;
display: block;
margin: 0 auto;
}
.you-might-like {
margin-top: 30px;
}
.you-might-like h2 {
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.recommendations {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
.recommendations .item {
flex: 1 1 200px;
max-width: 20%;
margin: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 10px;
text-align: center;
}
.recommendations img {
width: 100%;
max-width: 150px;
}
.why-buy {
margin-top: 30px;
}
.why-buy h2 {
font-size: 24px;
margin-bottom: 20px;
color: #333;
}
.feedback {
text-align: center;
margin-top: 30px;
}
.disclaimer {
margin-top: 30px;
font-size: 12px;
color: #777;
}
/* Responsive styles for mobile devices */
@media (max-width: 768px) {
.product-details {
max-width: 100%;
margin-left: 0;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 10px;
border: none;
background: #f8f8f8;
}
.price-box {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 100%;
border: none;
padding: 10px;
margin: 0;
}
.price-box .rrp,
.price-box .discounted-price {
margin: 0 10px;
}
.btn-primary,
.btn-secondary {
padding: 5px 10px;
font-size: 14px;
}
}
@media (max-width: 1024px) {
.recommendations .item {
max-width: 25%;
}
}
@media (max-width: 768px) {
.recommendations .item {
max-width: 50%;
}
}
@media (max-width: 480px) {
.recommendations .item {
max-width: 100%;
}
}
3 Selectable Heat Settings – 750W / 1250W / 2000W – with Thermostat & Timer for Comfort and Cost Control






Buy from a trusted UK seller
Stay warm and comfortable wherever you are with this lightweight convection heater designed for flexible indoor heating. The integrated 24-hour timer allows scheduling to suit your routine. Set heating sessions in 15-minute increments across the day for comfort, convenience, and control over running costs.
Adjustable Heating Performance
Choose from three heat settings 750W, 1250W, and 2000W to match your comfort level and room size. The adjustable thermostat helps maintain a consistent temperature.
Portable & Practical
Carrying handles on both sides provide easy movement from room to room. The compact, lightweight design makes it ideal for living rooms, bedrooms, offices, or garages.
Built-in Protection
Safety is supported with overheat protection, automatically switching off the heater if internal temperatures rise too high.
Specifications
| Brand | SORTFIELD |
| Colour | White & Black |
| Heating Method | Convection |
| Heat Output | 2000W (3 speeds) |
| Voltage | 220–240V / 50Hz |
| Adjustable Settings | 750W / 1250W / 2000W |
| Timer | 24-hour paddle timer |
| Safety | Overheat protection |
| Form Factor | Pedestal / Floor standing |
| Room Heating Coverage | Up to approx. 320 sq ft |
| Indoor Use | Yes |
| Mounting Option | Floor |
| Dimensions | 52D × 10.7W × 33.5H cm |
| Weight | 2.44 kg |
| Power Source | Corded electric. |
Key Features
- Lightweight and easy to move
- Instant convection heating
- Adjustable thermostat and 24-hour timer
- Overheat automatic shutdown
- Ideal as a supplementary home heater
What People Are Saying
“Nice and quiet, kicks out heat fast, keeps the room lovely and warm.”
— Verified Buyer, UK ⭐⭐⭐⭐⭐
“Good value… heat output is instant and airflow is great.”
— Verified Buyer, UK ⭐⭐⭐⭐
“Lightweight, easy to operate and heats the room very efficiently.”
— Verified Buyer, UK ⭐⭐⭐⭐⭐
We ship every day!
Place your order today, and we’ll dispatch it the same working day.
- Standard UK Delivery: 3-5 working days
- Express Shipping: 1-2 days, depending on your selection
To ensure your items arrive safely, we pack everything securely while maintaining our commitment to reducing waste.
We use cardboard and paper packaging because it is eco-friendly, recyclable, renewable, and biodegradable, even if it ends up as litter. We sometimes reuse bubble wrap received from our suppliers, ensuring it doesn’t go to waste. Occasionally, we use polybags made from recycled materials to protect shipments against adverse weather.
If you have any questions or suggestions on how we can improve, please reach out. We’re here to help and eager to enhance your experience with us.
Frequently Asked Questions
Q: What are the heat settings of this radiator heater?
A: This convector radiator heater has 3 heat settings of 750W, 1250W, and 2000W.
Q: Does this heater feature a timer?
A: Yes, there is a 24-hour paddle timer feature.
Q: Does this heater have overheat protection?
A: Yes, the heater has overheat protection, which will turn the heater off if the internal temperature gets too high.
Q: Is the heater easy to move?
A: Yes, the heater is lightweight and has handles on both sides, making it easy to move.
Q: What is the heat output of this heater?
A: The heater has a heat output of 2000 watts.
Q: What is the heating capacity of this heater?
A: The heater effectively heats spaces up to 320 square feet.
Looking for Hassle-Free Returns? You’ve Got It!
Here at TTHACO, we want you to love what you buy. If you’re not completely satisfied with your purchase, simply send it back within 30 days of receipt for a refund.
Please note that for items that have been opened, used, damaged, swapped, or are not returned in their original condition with all packaging and tags intact, we reserve the right to provide a partial refund or decline the return. Refunds are typically processed swiftly, within 1-3 business days through eBay.
If you have any questions or need assistance with your return, please Get in touch. We’re here to help!
Need Assistance? We’ve Got You Covered
If something goes wrong with your order, please contact us so we can fix it for you before leaving feedback. We understand that sometimes things like late delivery or broken items happen that we can’t control. But we always want to help you and make things right. We respond quickly to all inquiries because your satisfaction is our priority. Thank you for your understanding and for giving us the opportunity to resolve any issues.
Why Customers Trust TTHACO
- Buy with confidence: Please review what our customers are saying, we promise you will not be disappointed.
- We only provide high-quality products at low prices.
- We ensure every item is carefully packaged, ready for shipment.
- We always dispatch the same working day.
All brand names and trademarks mentioned in this description belong to their respective owners. The compatible part codes provided are for reference purposes only and do not indicate any affiliation with or endorsement by the brand owners.
Additional information
| Timer Control | 24 hrs |
|---|---|
| Power Source | Electric |
| Number of Heat Settings | 3 |
| MPN | 5056157950519 |
| Material | Galvanised Steel |
| Colour | White |
| Heating Element Format | X |
| Air Direction | 1-Way |
| Brand | Sortfield |
| BTU Heating Rating | 2000-2999 BTU |
| Heating Element Material | Steel |
| Type | Portable Heater |
| Control Style | Rotary Knob |
| Unit Type | Unit |
| Manufacturer Warranty | 2 Years |
| Heating System | Convection |
| Voltage | 240 V |
| Model | 2022 |
| Features | Auto Shut-off |
| Area Covered | 11 – 20 sq m |
| Mounting Location | Desk/Tabletop |
| Energy Efficiency Rating | A+++ |
| Power | 2KW |
| Country of Origin | China |
Delivery Information
UK Mainland
| Standard Delivery (2–3 working days) | £5.95 |
| Free Standard Delivery on orders over £25 | FREE |
| Express Courier (next working day) | £3.99 |
| Before 9:00am (weekdays) | £22.75 |
| Before Noon (weekdays) | £12.50 |
| Before 2:00pm (weekdays) | £11.50 |
| Saturday before 2:00pm | £22.75 |
Scottish Highlands & Northern Ireland
Deliveries to Scottish Highlands and Northern Ireland postcodes incur a surcharge due to higher courier costs.
| Standard Delivery (3–5 working days) | £9.95 |
| Express Courier (next working day) | £8.99 |
| Before 9:00am (weekdays) | £27.75 |
| Before Noon (weekdays) | £17.50 |
| Before 2:00pm (weekdays) | £16.50 |
| Saturday before 2:00pm | £27.75 |
All orders are dispatched Monday to Friday. Orders placed before 2pm are dispatched the same day where possible.
You will receive a tracking number by email once your order has been dispatched.
Please note: We only deliver within the United Kingdom.
Returns & Refunds
We offer a 30-day returns policy on all unused items in their original packaging.
To arrange a return:
- Contact us at returns@ntsl.co.uk with your order number
- We will provide a returns address and reference number
- Post the item back securely — we recommend tracked postage
Refunds are processed within 5 working days of receiving the returned item.
Faulty or damaged items: Please contact us within 48 hours of delivery with photos of the damage and we will arrange a free replacement or full refund.





Reviews
There are no reviews yet.