CSS Inserts have two parts, the CSS selector(s) and the rule(s). You can combine multiple selectors together so they all apply the same rule(s). In your case you have
Quote:
body.home div#menu1 ul.rMenu li a, div#menu1 ul.rMenu li.current_page_item a:visited, div#menu1 {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-originadding;
background:#7AC923 none repeat scroll 0 0;
border:2px solid #7AC923;
color:#FFFFFF; }
|
So your selectors are:
body.home div#menu1 ul.rMenu li a,
div#menu1 ul.rMenu li.current_page_item a:visited,
div#menu1
so these rules will be applied to:
- any <a> that is a element of
-- an <li> that is a element of
--- a <ul> with a class of 'rMenu, which is
---- an element of a <div> with an ID of 'rMenu' which is
----- on the home page
or
- any <a> that was visited and is
-- an element of an <li> with a CLASS of 'current_page_item' which is
--- an element of a <ul> with a CLASS of 'rMenu' which is
---- an element of a <div> which has an ID of 'menu1'
or
- a <div> which has an ID of 'menu1'