Fixing the Safari Font Weight Problem

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
User avatar
volomike
Forum Regular
Posts: 633
Joined: Wed Jan 16, 2008 9:04 am
Location: Myrtle Beach, South Carolina, USA

Fixing the Safari Font Weight Problem

Post by volomike »

I guess I'm not the only one who thinks that Safari renders all the fonts as bold (and then bold would be extra bold). It makes it hard to read some bolded text. And here's the fix I tried and it works great. I implement it only with my Safari style sheet, not the style sheet I use on the other browers.

Code: Select all

BODY {
    text-shadow: #000000 0 0 0px;
}
Just thought I'd share that.
User avatar
JAB Creations
DevNet Resident
Posts: 2341
Joined: Thu Jan 13, 2005 6:44 pm
Location: Sarasota Florida
Contact:

Re: Fixing the Safari Font Weight Problem

Post by JAB Creations »

Thanks for sharing. :wink:
Post Reply