Quote:
Originally Posted by hugh_
mferguson,
The random garages feature is breaking my fixed style layout at ~980 pixels width. Would it be possible to add a configuration option to set the number of columns? In my case 3 not 5 is enough...
Thanks!
Hugh
|
Hugh,
I'll add this as something to consider for the next release. In the meantime you can manually edit the code to make the needed change. Open dto_garage.php and look for the following:
PHP Code:
$width = 5;
$maxResults = 25;
and change it to
PHP Code:
$width = 3;
$maxResults = 25;
Thanks!
Mark