a position: relative fix for IE7, but not fro Chrome (it requires also
deisplay: block). Unfortunatly not always it's possible to use the
display: block (I lost the automatic expansion of the cells
In IE8 and Firefox 3 it does not work for me. Maybe its different versions
or maybe your situation is a bit different.
Or maybe I should say, it works - but repeats for each cell individually.
hello my beautiful friends.
problem solved.
works in all browsers.
.category-grid-products tr {
background: url(images/shelf1b.gif) left top no-repeat !important;
border: 0px solid #ccc;
position: relative;
display: block;
height: 185px;
}
.category-grid-products td {
background-color: transparent;
background-image: none;
border: 0px solid #ccc;
width: 140px;
height: 160px;
}
This not fix, afect tr widths :S
/* webkit based browsers */
/* saf3+, chrome1+ */
@media screen and (-webkit-min-device-pixel-ratio:0) {
#orderFormTable {
background:White -webkit-gradient(linear, left center, right center,
from(#EFEAE3), to(#ffffff)) repeat 0 0;
}
#orderFormTable tr {
background:White;
}
#orderFormTable tr.odd {
background:Transparent;
}
}