Quote:
Originally Posted by digitalpoint
You have an overridding CSS definition within your CSS files...
Code:
*{ -moz-box-shadow: none !important; -webkit-box-shadow: none !important; }
That is going to kill all box-shadows on Safari, Chrome and Firefox.
Looks like it's in your additional.css CSS template.
|
Now works perfect, I love it, I nominate you to MOTM, this hack worth it. I change the line to this:
Code:
*{ -moz-box-shadow: all !important; -webkit-box-shadow: all !important; }