summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspider <spider@bitweaver.org>2014-11-24 14:56:47 -0500
committerspider <spider@bitweaver.org>2014-11-24 14:56:47 -0500
commitaf9642184b7bfa1e3631152b675623e541160584 (patch)
tree9bf79417f4ba37ada639635c0f6e2738970aec8f
parent07e0d8ea6dcc0cea196842a185cf29d44a0805b5 (diff)
downloadkernel-af9642184b7bfa1e3631152b675623e541160584.tar.gz
kernel-af9642184b7bfa1e3631152b675623e541160584.tar.bz2
kernel-af9642184b7bfa1e3631152b675623e541160584.zip
change global thumbnail sizes to be bootstrap friendly
-rw-r--r--config_defaults_inc.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/config_defaults_inc.php b/config_defaults_inc.php
index 588d383..a8b29a4 100644
--- a/config_defaults_inc.php
+++ b/config_defaults_inc.php
@@ -215,11 +215,11 @@ if( empty( $gPreScan ) ) {
global $gThumbSizes;
if( empty( $gThumbSizes )) {
$gThumbSizes = array(
- 'large' => array( 'width' => 940, 'height' => 705 ),
- 'medium' => array( 'width' => 460, 'height' => 345 ),
- 'small' => array( 'width' => 220, 'height' => 165 ),
- 'avatar' => array( 'width' => 100, 'height' => 100 ),
- 'icon' => array( 'width' => 48, 'height' => 48 ),
+ 'large' => array( 'width' => 1200, 'height' => 900 ),
+ 'medium' => array( 'width' => 800, 'height' => 600 ),
+ 'small' => array( 'width' => 400, 'height' => 300 ),
+ 'avatar' => array( 'width' => 200, 'height' => 150 ),
+ 'icon' => array( 'width' => 100, 'height' => 100 ),
);
}
?>