PDA

View Full Version : No Shadow!!


SoFresh
12-27-2009, 12:31 AM
How can I get rid of the shadow on things completely?

mandingo
12-27-2009, 03:11 PM
How can I get rid of the shadow on things completely?

admincp>styles and templates>style manager>whatever style>edit templates>vbulletin-chrome.css

put

* { -moz-box-shadow: none !important; }
at the very bottom.

SoFresh
12-27-2009, 03:29 PM
You're a lifesaver!!! Thank you so much!!! =)

--------------- Added 1262016856 at 1262016856 ---------------

It still showed in Google Chrome so I added on the webkit one...
*{ -moz-box-shadow: none !important; -webkit-box-shadow: none !important; }

in case anyone cares ;)

lgnd
12-30-2009, 08:45 PM
Thanks for the tip! Very useful!

mandingo
12-31-2009, 12:04 AM
You're a lifesaver!!! Thank you so much!!! =)

--------------- Added 1262016856 at 1262016856 ---------------

It still showed in Google Chrome so I added on the webkit one...
*{ -moz-box-shadow: none !important; -webkit-box-shadow: none !important; }

in case anyone cares ;)

NIce.