Franek
Franek

Reputation: 2055

Firebug console and css errors

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.

Upvotes: 0

Views: 666

Answers (1)

David Hedlund
David Hedlund

Reputation: 129792

Found this:

ul, ol {
    margin-left 0;
}

on this example page: http://sorgalla.com/projects/jcarousel/examples/static_simple.html

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

Upvotes: 1

Related Questions