<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Lucida Hybrid: The &#8216;Grande&#8217; Alternative</title>
	<atom:link href="http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/</link>
	<description>Design wisdom in red and grey.</description>
	<lastBuildDate>Fri, 30 Jul 2010 02:11:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: spindle</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-33070</link>
		<dc:creator>spindle</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:05:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-33070</guid>
		<description>*(Ditto) Joe Dolson</description>
		<content:encoded><![CDATA[<p>*(Ditto) Joe Dolson</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Jay Cohen</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-33044</link>
		<dc:creator>Steven Jay Cohen</dc:creator>
		<pubDate>Sat, 26 Dec 2009 14:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-33044</guid>
		<description>Note:
url(‘images/Lucida_Grande.ttf’)
should be:
url(images/Lucida_Grande.ttf)

Sorry about that :)</description>
		<content:encoded><![CDATA[<p>Note:<br />
url(‘images/Lucida_Grande.ttf’)<br />
should be:<br />
url(images/Lucida_Grande.ttf)</p>
<p>Sorry about that :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Jay Cohen</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-33043</link>
		<dc:creator>Steven Jay Cohen</dc:creator>
		<pubDate>Sat, 26 Dec 2009 13:23:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-33043</guid>
		<description>Thank you for this interesting discussion. With the advent of CSS3, we can use @font-face to attempt to embed Lucida Grande if not installed. However, since many browsers do not support this yet (and, some that do don&#039;t do a very good job of rendering yet), using your idea, in conjunction with @font-face seems the best solution.

Code follows:

@font-face { 
  font-family: Lucida; 
  src: url(&#039;images/Lucida_Grande.ttf&#039;) format(&#039;truetype&#039;);
  font-weight: normal;
} 
@font-face { 
  font-family: Lucida; 
  src: url(&#039;images/Lucida_Grande_Bold.ttf&#039;) format(&#039;truetype&#039;);
  font-weight: bold; 
}

body {
    font-family: &#039;Lucida Grande&#039;, &#039;Lucida Sans Unicode&#039;, Lucida, Corbel, &#039;DejaVu Sans&#039;, &#039;Bitstream Vera Sans&#039;, &#039;Liberation Sans&#039;, Verdana, Arial, Helvetica, sans-serif;
}
strong, em, b, i, h1, h2, h3, h4, h5, h6, address {
    font-family: &#039;Lucida Grande&#039;, &#039;Lucida Sans&#039;, Lucida, Corbel, &#039;DejaVu Sans&#039;, &#039;Bitstream Vera Sans&#039;, &#039;Liberation Sans&#039;, Verdana, Arial, Helvetica, sans-serif;
}
code, pre {
    font-family: &#039;Lucida Console&#039;, &#039;Andale Mono&#039;, Monaco, &#039;Courier New&#039;, Courier, monospace;
}</description>
		<content:encoded><![CDATA[<p>Thank you for this interesting discussion. With the advent of CSS3, we can use @font-face to attempt to embed Lucida Grande if not installed. However, since many browsers do not support this yet (and, some that do don&#8217;t do a very good job of rendering yet), using your idea, in conjunction with @font-face seems the best solution.</p>
<p>Code follows:</p>
<p>@font-face {<br />
  font-family: Lucida;<br />
  src: url(&#8216;images/Lucida_Grande.ttf&#8217;) format(&#8216;truetype&#8217;);<br />
  font-weight: normal;<br />
}<br />
@font-face {<br />
  font-family: Lucida;<br />
  src: url(&#8216;images/Lucida_Grande_Bold.ttf&#8217;) format(&#8216;truetype&#8217;);<br />
  font-weight: bold;<br />
}</p>
<p>body {<br />
    font-family: &#8216;Lucida Grande&#8217;, &#8216;Lucida Sans Unicode&#8217;, Lucida, Corbel, &#8216;DejaVu Sans&#8217;, &#8216;Bitstream Vera Sans&#8217;, &#8216;Liberation Sans&#8217;, Verdana, Arial, Helvetica, sans-serif;<br />
}<br />
strong, em, b, i, h1, h2, h3, h4, h5, h6, address {<br />
    font-family: &#8216;Lucida Grande&#8217;, &#8216;Lucida Sans&#8217;, Lucida, Corbel, &#8216;DejaVu Sans&#8217;, &#8216;Bitstream Vera Sans&#8217;, &#8216;Liberation Sans&#8217;, Verdana, Arial, Helvetica, sans-serif;<br />
}<br />
code, pre {<br />
    font-family: &#8216;Lucida Console&#8217;, &#8216;Andale Mono&#8217;, Monaco, &#8216;Courier New&#8217;, Courier, monospace;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vitezslav Valka</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32897</link>
		<dc:creator>Vitezslav Valka</dc:creator>
		<pubDate>Wed, 16 Sep 2009 13:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32897</guid>
		<description>Lovely research :-) Thx.</description>
		<content:encoded><![CDATA[<p>Lovely research :-) Thx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32896</link>
		<dc:creator>Ricardo</dc:creator>
		<pubDate>Mon, 14 Sep 2009 20:49:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32896</guid>
		<description>My PC with Vista only has Lucida Sans Unicode, so the bold and italic parts are just.. Arial.</description>
		<content:encoded><![CDATA[<p>My PC with Vista only has Lucida Sans Unicode, so the bold and italic parts are just.. Arial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan W</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32895</link>
		<dc:creator>Nathan W</dc:creator>
		<pubDate>Mon, 14 Sep 2009 18:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32895</guid>
		<description>Lucida as a viable font face for website is complete garbage. Any visual impact you might get by choosing the font is completely offset by the amount of jiggery-pokery you have to do to get it to work properly.

Even the most recent versions of Windows dont include the Grande version of the font, and Im yet to see a designer who actually knows how to implement the font properly.

More mainstream fonts like Arial, Verdana etc at least work consistently every time, and produce readable text.</description>
		<content:encoded><![CDATA[<p>Lucida as a viable font face for website is complete garbage. Any visual impact you might get by choosing the font is completely offset by the amount of jiggery-pokery you have to do to get it to work properly.</p>
<p>Even the most recent versions of Windows dont include the Grande version of the font, and Im yet to see a designer who actually knows how to implement the font properly.</p>
<p>More mainstream fonts like Arial, Verdana etc at least work consistently every time, and produce readable text.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32765</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sun, 12 Jul 2009 21:34:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32765</guid>
		<description>Great post. Thank you</description>
		<content:encoded><![CDATA[<p>Great post. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joomla Theme Creator</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32681</link>
		<dc:creator>Joomla Theme Creator</dc:creator>
		<pubDate>Mon, 11 May 2009 02:26:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32681</guid>
		<description>Joomla is a top notch CMS and this post is a perfect example why. Thank you for this information.</description>
		<content:encoded><![CDATA[<p>Joomla is a top notch CMS and this post is a perfect example why. Thank you for this information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brownspank</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32670</link>
		<dc:creator>Brownspank</dc:creator>
		<pubDate>Thu, 07 May 2009 02:58:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32670</guid>
		<description>@&lt;a href=&quot;#comment-32659&quot; rel=&quot;nofollow&quot;&gt;Jon&lt;/a&gt;: You could do that, though depending on the types and versions of browsers your site supports, you&#039;ll have to assign a class to each textbox input element to be able to target them effectively in IE6 (as it doesn&#039;t support attribute selectors).</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-32659" rel="nofollow">Jon</a>: You could do that, though depending on the types and versions of browsers your site supports, you&#8217;ll have to assign a class to each textbox input element to be able to target them effectively in IE6 (as it doesn&#8217;t support attribute selectors).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32659</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Wed, 06 May 2009 08:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.brownbatterystudios.com/sixthings/2007/03/14/lucida-hybrid-the-grande-alternative/#comment-32659</guid>
		<description>I have a question relating to Jonathan Schofield’s idea of putting Lucida Grande first then falling back to the others for Windows users. You said that there is a textbox width issue when using it. Could you then not change the textbox font to Arial or similar so you have font for main contnent, font for bold &amp; italic and font for inputs?</description>
		<content:encoded><![CDATA[<p>I have a question relating to Jonathan Schofield’s idea of putting Lucida Grande first then falling back to the others for Windows users. You said that there is a textbox width issue when using it. Could you then not change the textbox font to Arial or similar so you have font for main contnent, font for bold &amp; italic and font for inputs?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
