I am using an open source shopping cart and I'd like to make a category heading an image instead of text.
This is what was there originally:
define('BOX_HEADING_CATEGORIES', 'Categories');
I have looked all over the web and found a couple of ways to do this, but neither work. I am not receiving error messages but the images do not show up. The first is:
define('BOX_HEADING_CATEGORIES', '<img src="/images/myimage.jpg">');
and the second is:
define('BOX_HEADING_CATEGORIES', '
');
What will work for this?
Thanks.