tags:

views:

99

answers:

2

when i wrote © in my page it doesn't show the copyright symbol,

and show the point instead, just . it shows. maybe you know why? thanks

+3  A: 

Most likely — because the font you are using has a broken copyright character in it.

Without a test case it is hard to make a guess beyond that.

David Dorward
@David Dorward yes, you're true. but what can i do in this case? if i remoove the font, works fine, but i need that font:)
Syom
Be aware that many people may not have the font you are using.
SLC
+4  A: 

Put the copyright symbol in a <span> tag and in your css use a font that works.

<span class="copyright">&copy;</span>2007 Syom Industries

CSS:

.copyright {
    font-family: Arial,
         "Helvetica Neue",
         Helvetica,
         sans-serif;
}
ghoppe
`font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;`
Mark Tomlin
@Mark Yeah, normally I'd put Helvetica first too, in fact I'd put "Helvetica Neue" first, but in this case it's just a `©` symbol ;-)
ghoppe