Selecting a listings style
There are two standard listing styles as well as a custom one. The first two
are for people that need to get there site up and running without a lot of custom
work.
You can set the sidebar and listing style in the xml back office
If you do the following it will overright the back office settings.
To choose a listing style option edit your listings.php file
look at the top section it should look something like the following
<?php
require ("config.inc.php");
$File = "listings.php";
include ("header_options.php");
?>
now add a new line before the header_options.php line and add the following.
$liststyle = "liststyle2.php";
The default is liststyle1.php
you code should now look like this
<?php
require ("config.inc.php");
$File = "listings.php";
$liststyle = "liststyle2.php";
include ("header_options.php")
?>
save and upload your file and your should now have style #2.
If you would like to use the custom style change liststyle2.php to liststyle_custom.php
Refer to the Custom listings style documentation
for setup
© 2003 XML Systems Inc.