On Wed, Dec 19, 2012 at 7:54 PM, David Laakso <laakso.davi...@gmail.com> wrote:
> There is a  unicode geometric shape[1] in the nav.
>
> markup
> <http://ccstudi.com/>
> css
> <http://ccstudi.com/site/css/sisu.css>
>
> line number 761 through 768
>
> nav ul li em span::after{
> content:" \0025B6";
> color:rgb(255,255,255);
> font-size:100%;
> /*line-height:2;*/
> padding:0 0 0 4%;
> z-index:10}
>
> re:
> OS Windows 7.
>
> Seems to me that the current versions of Opera, Safari,Chrome, and
> IE/9 get it right.
> Whereas the current versions of Firefox and Geoko get it wrong.
>
> Coding error on my part? Or, Firefox/Geoko bug?
>
> [1] <http://en.wikipedia.org/wiki/Geometric_Shapes>


Resolved!
Thanks to an off-list reply from
Philippe Wittenbergh.
http://l-c-n.com/

Code revised from:

nav ul li em span,
nav ul li i span,
nav ul li a span,
nav ul li a:link span,
nav ul li a:visited span{
font-family:Georgia,serif;
font-size:100%;
font-weight:300;
margin:0 4%;}

nav ul li em span::after{
content:" \0025B6";
color:rgb(255,255,255);
font:100%;
padding:0 0 0 4%;
z-index:10}

To:

nav ul li em span,
nav ul li i span,
nav ul li a span,
nav ul li a:link span,
nav ul li a:visited span{
font-family:Georgia,serif;
font-size:100%;
font-weight:300;
margin:0 4%;}

nav ul li em span::after{
content:" \0025B6";
color:rgb(255,255,255);
font:110% 'Arial Unicode MS',sans-serif!important;/*Georgia does not
have the needed unicode geometric shape*/
padding:0 0 0 4%;
z-index:10}


-- 
Chelsea Creek Studio
http://ccstudi.com
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to