Where can I change the main background from black to a *.gif?
At the moment the background of "my" gallery is black. I like the theme but I would like to build in a *.gif-main-background. The rectangles (Categories, Menu) should remain black.
Thanks for your help.
Offline
Just place a file named background.gif in the directory template/default/theme.
A bug in release 1.3.0 won't make it work, you have to make a small modification ! In template/default/style.inc.php (1.3.0), replace
109 $image = './theme/'.$user['theme'].'/background.gif';
by
$image = './template/'.$user['template'].'/theme/background.gif';
Offline