Hello Everyone, I have tried to duplicate the css font and font size that is on the following page[see linik] page, but I have been unable to. Could some one give me a sample css that would make my text look like this? Here is the link to the site.. Its the main text area. http://keyetv.com/topstories/topstories_story_299113124.html Thanks, Dan
It looks like Georgia, at a large font-size, with reduced letter-spacing. Try something like this: h2 {font-family:Georgia,serif;font-size:36px;letter-spacing:-0.1em} Code (markup):
IE is not a modern browser, though. Its support for letter-spacing is incomplete/faulty. Test for your particular case. cheers, gary
the problem that most people face with -0.1em is that they never know exacly the final result working with em units instead of pixels
By modern he means in compliance with the W3C standards. IE is notorious for ignoring the standards set out by the W3C. There are many "bugs" that are in IE which are not consistant at all with web standards. Designers must work around IE, even though it is the most popular browser. Hense the term 'browser hacks'. In Regards to the topic The font for the H1 tag is font-family:georgia, serif; Code (markup): The font fot the paragraph is: font-family:verdana, san-serif; Code (markup): With Line height set to line-height:1.3em; Code (markup): To view the page's CSS go here: http://static.viacomlocalnetworks.com/css/screen.css Hope this helps, Cheers, D