Hi,
I basically have the following class:
.sf-sub-indicator {
background: url("/abcprod/images/arrows-ffffff.png") no-repeat -10px -100px;
}
Is it possible in CSS to set a background image clause to use a hardcoded symbol such as ">" so that instead it uses:
.sf-sub-indicator {
background: url(">") no-repeat -10px -100px;
}
Don't actually want it to use an image but a symbol instead.
Can this be done against a class such as above?
Thanks.