I'm specifying a cascading style sheet to customize the visual format area of my dct. Everything seems to work OK, except when I specify a custom bullet image.
ul { list-style-image: url("bullet.gif");}
Visual format is only able to find the image if I give it an absolute path i.e. c:\bullet.gif or as shown below
ul { list-style-image: url ("
http://dsvd2a01/imacs/images/bullet.gif");}
What I'd like to do is put the gif in the same directory as the style sheet and just reference the file name "bullet.gif".
Note that this is only a problem on the dct. When the page is generated, the css picks up the gif just fine without the absolute path.
Any help would be appreciated.
Gary