0

Can someone look at this page carefully. I am trying to fix font on this page. I don't know what previous programmer has done to font. Can you look at service guarantee and service features headings in green panels, edges of text are like someone cut this font with seesaw. Similarly on other parts of page. They are supposed to look smooth.

viewing page on ff and ie8 (widows xp).

mysterious
  • 1,450
  • 5
  • 29
  • 56
  • can u look at the edges of font?? Edges are not smooth. – mysterious Dec 13 '10 at 17:55
  • 1
    Due to css/html display differently cross browsers, I think in order to get your problem solved you might need to give more information about what platform you are using, such as windows, mac osx, etc. and what browser you are using? IE, Chrome, Firefox, Safari.... – Tee Wu Dec 13 '10 at 17:57
  • see some of the answers. This is a browser-based problem. It looks fine to me in Chrome, Firefox, and IE. – Ender Dec 13 '10 at 17:58
  • The link to the page is now gone - so this question is less useful than it could be for others in the future. – KatieK Dec 13 '10 at 18:27

3 Answers3

3

I think you mean that these sections aren't anti-aliased. This isn't something you can control when you display text on the browser -- it's actually browser- and OS-dependent.

If it's important to your users to have smooth fonts, then you could anti-alias them in an image program and use images instead of text, but this is extremely inefficient and makes your page a gigantic pain to update.

So, in short, there isn't anything you can do to fix this. See this SO question for more details.

Community
  • 1
  • 1
jwheron
  • 2,553
  • 2
  • 30
  • 40
1

use firebug which is a firefox plugin to see the styles and html tags used in the web page, you can even edit the css used in the web page through firebug.

wizzardz
  • 5,664
  • 5
  • 44
  • 66
1

Your page looks fine on my browser (Chrome under Windows).

Different browsers all render text differently. What you will find is that there are often sweet spots in font sizes that look better than others. In any case, what you are talking about is whether the browser is displaying fonts anti-aliased or not.

There is a CSS3 property, font-smooth, that you can adjust for this, but don't expect it to work on browsers that aren't smoothing their fonts anyway. You can read about it here: http://webdesign.about.com/od/styleproperties/p/blspfontsmooth.htm

In short, don't worry about it. If it is a big deal for you, then experiment with different fonts and sizes. A good tool for doing this is at http://www.typetester.org/

Don't forget to test your site at BrowserShots.org. It will do screen captures for you, so you can check these details on a wide range of platforms.

If you must have your font rendered in a specific way, then it must be done in an image. This is not recommended. Text should be text wherever possible. However, if you must do it this way, consider one of the many scripts that assist, so you can keep text for browsers that don't support the script, and SEO isn't a problem. Typeface.js is commonly used for this.

Brad
  • 159,648
  • 54
  • 349
  • 530