Hello all,
I am getting the following two errors in Firefox error consule:
1. Expected ':' but found '.'. Declaration dropped.
I cannot find this error as the FF error console highlights all the css.
2. unexpected end of file while searching for closing } of declaration block.
The only problems I can see are in the following extracts from the FF error console (in actinic.css):
i.e. missing } at the end of four declarations (highlighted in red).
But look at the code copied from the css in my site1:
The } are all there. I have also completely refreshed my site but still get these errors.
I cannot find
Can anyone help?
I am getting the following two errors in Firefox error consule:
1. Expected ':' but found '.'. Declaration dropped.
I cannot find this error as the FF error console highlights all the css.
2. unexpected end of file while searching for closing } of declaration block.
The only problems I can see are in the following extracts from the FF error console (in actinic.css):
Code:
/* CHS LINK FORMATTING ELEMENTS -------------- */ a.chstextlink:link { color : blue; text-decoration : underline; } a.chstextlink:visited { color : purple; text-decoration : underline; } a.chstextlink:hover { color : blue; text-decoration : underline; } a.chstextlink:active { color : blue; text-decoration : underline; } a.chs_navbar_txtlink { color : #000000; text-decoration : none; a.chs_navbar_txtlink:visited { color : #000000; text-decoration : none; a.chs_navbar_txtlink:hover { color : #ffffff; text-decoration : underline; background : #000000; a.chs_navbar_txtlink:active { color : #000000; text-decoration : none; /* END OF CHS LINK FORMATTING ELEMENTS -------------- */
But look at the code copied from the css in my site1:
Code:
a.chs_navbar_txtlink:link { color: #000000; text-decoration: none; } a.chs_navbar_txtlink:visited { color: #000000; text-decoration: none; } a.chs_navbar_txtlink:hover { color: #ffffff; text-decoration: underline; background : #000000; } a.chs_navbar_txtlink:active { color: #000000; text-decoration: none; } /* END OF CHS LINK FORMATTING ELEMENTS -------------- */
I cannot find
Can anyone help?
Comment