Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How is this done? Re: How is this done?

#55808
apostrophe
Participant

Firstly you need to be absolutely sure you want to remove that glow as it is an important usability feature. If you really want to do it then add this to your CSS:

Code:
*:focus {
outline: 0;
}

The text feature on the MacHeist site is done using the CSS3 property text-shadow thus:

Code:
body {
font-family:”Helvetica Neue”,Helvetica,Arial,sans-serif;
text-shadow:0 0 1px rgba(0, 0, 0, 0.01);
}

Unfortunately Safari is the only browser that supports it at the moment.