On May 23, 2008, at 12:34 PM, Raven Gildea wrote:

> 

That is a 'translation' of the BOM (Byte Order Marker). It is an  
invisible character.
You should configure your editor not add this to your stylehseet(s),  
or any other html/js/php document. It is useless for utf-8 anyway.
And IE Mac is known to have problems with this.

> [...]
>
> I have two style sheets for the site, and IE/Mac
> wasn't reading new updates to the main sheet ... until
> I removed the mystery code from the top of the sheet.
> Then, it could read my new styles. Which was cool,
> except that removing the code from the top of the IE
> style sheet didn't fix the margin problem.
>
> Here are urls to my page and the two style sheets:
>
> www.genderspectrum.org/book2.htm
> www.genderspectrum.org/css/go_styles.css
> www.genderspectrum.org/ie.css

I hope you are not expecting that IE mac will read your ie.css  
stylesheet. That one is wrapped in a conditional comment. IE Mac does  
_not_ understand conditional comments.

I'm not clear what you are trying to do with that negative margin-left  
you are using on the #rightcol ul. If you want to zero out the space  
to the left of list-item (<li>), you should set both the margin-left  
and the padding-left to '0' (zero) - that will 'reset' all browsers;  
then, if you want to push the <ul> more to the left, you could use a  
margin-left value (e.g. 10px;).

Your stylesheet may look something like this
#rightcol ul {
        margin: 0;
        padding: 0 0 0 20px;
}
  /* That would give you a 20px left padding; adjust values to taste */

Philippe
---
Philippe Wittenbergh
http://l-c-n.com/





______________________________________________________________________
css-discuss [EMAIL PROTECTED]
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