Page 1 of 1

Bug in the CSS for the forums subSilver template

Posted: Thu Jun 08, 2006 5:16 pm
by AKA Panama Jack
One of the great things about the latest version of Opera 9 is how it can do automatic syntax checking of everything from CSS to HTML to XSLT to JAVASCRIPT and more for any web site you are viewing. :) All of this comes built-in without having to hunt for plugins. :D

I thought someone might want to fix the CSS error in the subSilver forum template.

Code: Select all

CSS - http://forums.devnetwork.net/templates/subSilver/geshi.css
Linked-in stylesheet
Declaration syntax error
Line 459:
  .visualfoxpro .co2 {color: green font-style: italic;}
  ------------------------------------^
And it even points to the location of the error inside the line. :D Just too damned cool. To fix the CSS error you just need to place a semi-colon between green and font-style.

Code: Select all

.visualfoxpro .co2 {color: green; font-style: italic;}

Posted: Thu Jun 08, 2006 5:22 pm
by feyd
fixed. Looks like it was a bug in Geshi itself.

Posted: Thu Jun 08, 2006 5:27 pm
by AKA Panama Jack
Image