Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Photoshop Mock Up Font isn't same as in HTML

Tags:

html

text

fonts

(Beginner to HTML)

I have made a Photoshop mock-up of the website I want to make, but the text I have used in the mock-up looks different when viewed in Firefox. The text is Arial font, size 18pt and regular weight, and I have implemented this into HTML code, but it looks different.

Is there a way to make the font look the same in HTML as it does in Photoshop?

Thanks in advance :)

like image 819
Mozaz Avatar asked Jul 21 '09 20:07

Mozaz


People also ask

How do I reset my font cache in Photoshop?

Close all Adobe applications including the Adobe Creative Cloud desktop app (if installed). Navigate to C:\Windows\ServiceProfiles\LocalService\AppData\Local. Delete the *FNTCACHE*. DAT or *FontCache*.

Why fonts are not showing in Photoshop?

Fonts must be loose in the destination folder, not zipped or in a subfolder. If your fonts are not showing up, double-check to make sure they are in the correct folder. Option 2 – Alternatively, you can double-click the font name to open the Font Book application.


2 Answers

The short answer is "no". Photoshop has a lot more font functionality than a web browser. It applies all kinds of smoothing algorithms, and you can control kerning, tracking and spacing much better.

Each browser and OS has a distinct rendering engine as well, so even if you could get it the same in one browser/OS combination, it would look different in another.

However, check out all the CSS properties for text to see if you can get something you're able to live with. If not, your best bet is to just make an image out of your text and add it to your page with good "alt" text and such.

like image 162
womp Avatar answered Nov 14 '22 21:11

womp


I'm not sure what OS you're on, but Windows and Macintosh have different font systems.

This post by Joel Spolsky points out that the font rendering is based on philosophical differences.

Is that what you're seeing? Please post images so we can see what you're talking about.

like image 45
Nosredna Avatar answered Nov 14 '22 20:11

Nosredna