Script adds new items.

<!--[if IE 7]> <script> $(function() { $('.breadcrumbs li a').not('.breadcrumbs li:first-child a').before('&raquo;&nbsp;'); }); </script> <![endif]--> 

How to set color for these elements? They are black by default.

    1 answer 1

    What if you make them in a span tag with the specified color?

     <!--[if IE 7]> <script> $(function() { $('.breadcrumbs li a').not('.breadcrumbs li:first-child a').before('<span style="color: red">&raquo;&nbsp;</span>'); }); </script> 

    <! [endif] ->

    • Yes, thanks, it works. - Heidel