views:

84

answers:

1

I am getting the following error in Firebug (console -> show css errors)

Expected ',' or '{' but found '0.2'.

This is on a page with jCarousel.

Is there a way to get more information about this error in Firebug, I can't find it in the code.

+1  A: 

Found this:

ul, ol {
    margin-left 0;
}

on this example page: http://sorgalla.com/projects/jcarousel/examples/static%5Fsimple.html

i.e. margin-left is not followed by a colon.

David Hedlund
I can't find that error? Which css file and which line did you see that?
Dave Paroulek
If you open firebug, and select the dropdown in the 'Console' tab, and make sure 'Show CSS errors' is checked, then that error will appear when you load the link I provided. It also says `styles.css (line 46)`
David Hedlund
*style.css* not styles =)
David Hedlund
+1 Learned something new, I didn't realize you can display css errors, thanks!
Dave Paroulek