Errors/warning in CSS files in 1.8.1

Errors/warning in CSS files in 1.8.1

aluferrarialuferrari Posts: 22Questions: 1Answers: 0
edited August 2011 in Bug reports
Problem:
The following piece of code creates errors/warning in few of the CSS files.

[code] * cursor: hand; [/code]

The following files have this issue:

"\media\css\demo_table.css" - line 37
"\extras\ColVis\media\css\ColVis.css" - line 19
"\extras\TableTools\media\css\TableTools.css" - line 50

Solution:
Comment out the line of code:
[code] /* * cursor: hand; */ [/code]

Thanks.
-Aalap Sharma

Replies

  • allanallan Posts: 61,822Questions: 1Answers: 10,127 Site admin
    The problem with commenting out that line is that IE6-7 (possibly 8 can't remember off the top of my head) won't show the "hand" cursor. This might not be a problem for your site if you users aren't using IE, but generally speaking that line should remain in, even although, sadly, it does made the CSS file strictly invalid. Another option is to use conditional comments of course, but that's more maintence in the HTML file.

    Allan
This discussion has been closed.