I have written the following css style, it does not work… And I’m Clueless why?!
td.PostiveNumber
{
color:Green;
background-image:url(images/1354052077_arrow_large_up.png) no-repeat left !important;
text-align:right;
z-index:100;
}
I tried this to and it worked, so I thought to myself it’s only to set no-reapeat on and position the picture.
THIS WORKS, but looks buttugly… 🙁
{
color:Green;
background-image:url(images/1354052077_arrow_large_up.png);
text-align:right;
z-index:100;
}
The
background-imageCSS property should only be used to define the url of the image used.no-repeatbelongs to thebackground-repeatproperty, andleftcorresponts tobackground-position.backgroundgroups all of those, so:change
background-image:tobackground:, or split it up: