Hi all,
I am trying to use an image as a background for the category menu but having trouble. I can get a color to work just fine but when I try to replace the color with the path to my image, it doesn't display.
This is working to show the color:
div#menu2 {
background: blue;
}
But this isn't displaying my image:
div#menu2 {
background: url('<?php bloginfo('url'); ?>/wp-content/uploads/2011/02/gradblu.jpg') repeat-x;
}
Any ideas?