JaisonJE
JaisonJE

Reputation: 66

How to select a Cufon font?

How to select/copy the text which is build using cufon font. I can't select or copy the text from here: Comsys. I used cufon for headings.

Upvotes: 2

Views: 673

Answers (3)

Felix Eve
Felix Eve

Reputation: 3864

To copy text that uses Cufon to render it simply disable JavaScript in your browser and then refresh that page.

Then you will be able to copy the text.

Upvotes: 1

Andrea Turri
Andrea Turri

Reputation: 6500

You can not do that because Cufon render your font using Canvas.

Try using @font-face (css), example:

@font-face {
    font-family: DeliciousRoman;
    src: url(http://www.font-face.com/fonts/delicious/Delicious-Roman.otf);
    font-weight:400;
}

Then just use it like any other font in any other style rule.

p {
    font-family: DeliciousRoman, Helvetica, Arial, sans-serif;
}

Refer to: www.font-face.com

Upvotes: 0

user1317647
user1317647

Reputation:

You can't select it/copy it from your browser!
You can get all text from page source (including html tags)..

Upvotes: 1

Related Questions