Forums

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

Home Forums CSS Image inside Table Problem Re: Image inside Table Problem

#105294
amoss
Participant

In your css remove

/* Image Hover */
a img:hover{ opacity: 0.8;box-shadow: 0 1px 7px black;}

Then in Equipment Fleet Table css Remove

#SelectionTable a:hover {background-color: #fff;}

and Add

/* Alternate Rows */
#SelectionTable a:nth-child(odd) { background-color:#999; }

or for even add

/* Alternate Rows */
#SelectionTable a:nth-child(even) { background-color:#999; }

You also have cursor:pointer in this line if you want to remove it.

#SelectionTable span {padding-left:20px;display: inline-block;width: 30%;cursor: pointer;}