Yes that's a mistake on my part. I had to use direct paths because of some other things I was using.
images/xbox/logo.jpg should work fine.
I'll go update the paths on my site and export an updated xml file to fix the changes for anyone who downloads it in the future.
Hehehe that explains why my bandwidth was up higher than normal.
edit: ok the new xml file is up. If you don't want to mess with the image path's yourself you can simply delete the current xbox style and reimport the xml (dont do this if you have any customizations in the style).
If you prefer to just do it manually all you have to do is delete
http://www.xblteams.com// off the path so for example
htp://www.xblteams.com//images/xbox/logo.jpg
would now be images/xbox/logo.jpg I've tested it on my forum and it's working. Relative path's should work fine on your sites as well as long as you do not access it from different url's or area's so for example if you have a frame at
http://www.domain.tld/frame/frame.html and your forums are at
http://www.domain.com I believe you will get broken images and you will need to use absolute paths in which case
simply replace
http://www.xblteams.com//images/xbox/logo.jpg
with
http://www.yourdomain.tld/images/xbox/logo.jpg
if you have your forums in a sub directory
http:///www.yourdomain.tld/subdirect.../xbox/logo.jpg
On a side note if you want to change the header image you cannot do that in style vars as I override that with the random logo plugin.
to change the header image go to your plugin manager edit randomlogo
inside your should see
Code:
$imagearray[1]="images/xbox/logo1.jpg";
$imagearray[2]="images/xbox/logo2.jpg";
$imagearray[3]="images/xbox/logo3.jpg";
$imagearray[4]="images/xbox/logo4.jpg";
$random=rand(1,4);
You can do several things here. You can simply upload over logo1.jpg and so on or you can point it to different images. To point it to different images just change the filenames above you may need to use relative or absolute depending where you placed the image.
Also to add or remove images to the random queue
just do this
Code:
$imagearray[1]="images/xbox/logo1.jpg";
$imagearray[2]="images/xbox/logo2.jpg";
$imagearray[3]="images/xbox/logo3.jpg";
$imagearray[4]="images/xbox/logo4.jpg";
$imagearray[5]="images/xbox/logo4.jpg";
$random=rand(1,5);
if you have 5 images you need to update the numbers being passed to the rand function otherwise you'll never see the new image you added.
so if you have six images it would be rand(1,6) you can leave the 1 alone pretty much.
same deal if you remove images from the array.