Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Img Box Shadow (Exception Help) Re: Img Box Shadow (Exception Help)

#123523
Cyanoxide
Participant

If you give your logo an id/class in css and add the following to it it should do the trick for you.

box-shadow: none;

For example, if your logo’s class name is logo:

img.logo{box-shadow:none;}

If you plan to be using the exception multiple times name the class something like “no-shadow” and then you can just add that class to anything that needs the box-shadow removed.