diff options
author | friendica <info@friendica.com> | 2013-11-13 17:19:56 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-13 17:19:56 -0800 |
commit | 0f6907ab68e5d85d3ca80212be0c07e47159bd41 (patch) | |
tree | ceb384047b996adc2c9199071021cf41d96ecb4c /view/theme/redbasic/php/style.php | |
parent | 13fb987b04bc5a695df433e53e6d5f966ec355c5 (diff) | |
download | volse-hubzilla-0f6907ab68e5d85d3ca80212be0c07e47159bd41.tar.gz volse-hubzilla-0f6907ab68e5d85d3ca80212be0c07e47159bd41.tar.bz2 volse-hubzilla-0f6907ab68e5d85d3ca80212be0c07e47159bd41.zip |
change section_width to converse_width
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 716a2dd9e..d6104a090 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -24,7 +24,7 @@ $font_colour = get_pconfig($uid, "redbasic", "font_colour"); $radius = get_pconfig($uid, "redbasic", "radius"); $shadow = get_pconfig($uid,"redbasic","photo_shadow"); - $section_width=get_pconfig($uid,"redbasic","section_width"); + $converse_width=get_pconfig($uid,"redbasic","converse_width"); $nav_min_opacity=get_pconfig($uid,'redbasic','nav_min_opacity'); $sloppy_photos=get_pconfig($uid,'redbasic','sloppy_photos'); @@ -84,8 +84,8 @@ $shadow = "0"; if(! $active_colour) $active_colour = '#FFFFFF'; - if (! $section_width) - $section_width="72%"; + if (! $converse_width) + $converse_width="1024px"; if($nav_min_opacity === false || $nav_min_opacity === '') { $nav_float_min_opacity = 1.0; $nav_percent_min_opacity = 100; @@ -141,7 +141,7 @@ $options = array ( '$radius' => $radius, '$shadow' => $shadow, '$active_colour' => $active_colour, -'$section_width' => $section_width, +'$converse_width' => $section_width, '$nav_float_min_opacity' => $nav_float_min_opacity, '$nav_percent_min_opacity' => $nav_percent_min_opacity ); |