🎨
Case 1
The heading that won't turn orange
🎫 Client ticket
The welcome heading is supposed to be bright orange, but on the live site it's just plain black. The owner has tried refreshing and clearing the cache — nothing changes the colour.
HTML
CSS
✅ Fixed! Case closed.
You found the faulty line and corrected it — exactly what real debugging feels like.
Why it broke: CSS only understands
color (American spelling). colour isn't a real property, so the browser silently ignores the whole line — which is why nothing happened. Invalid properties don't throw errors; they're just skipped. Always double-check spelling when a style 'does nothing'.