diff options
author | friendica <info@friendica.com> | 2013-03-06 16:47:28 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-06 16:47:28 -0800 |
commit | b32b0102f79a4ecaaee62d08e2bceb51f69d79ad (patch) | |
tree | b2d476401fa5233ad7eac6f6cfd3d601d0d5c5f5 /view | |
parent | c5d0da43e57cf812dd3a88b04740728f7ae65523 (diff) | |
download | volse-hubzilla-b32b0102f79a4ecaaee62d08e2bceb51f69d79ad.tar.gz volse-hubzilla-b32b0102f79a4ecaaee62d08e2bceb51f69d79ad.tar.bz2 volse-hubzilla-b32b0102f79a4ecaaee62d08e2bceb51f69d79ad.zip |
fix font-size
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/php/style.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index bae202c7a..dcc63106a 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -75,7 +75,7 @@ // Enforce sane limits for expert mode - otherwise we'll end up with "experts" who think font size is a percentage. if(($redbasic_font_size >= 8.0) && ($redbasic_font_size <= 20.0)) { - echo ".wall-item-content { font-size: $redbasic_font_size\px;}\r\n"; + echo ".wall-item-content { font-size: ${redbasic_font_size}px;}\r\n"; } if(($line_height >= 1.0) && ($line_height <= 2.0)) { |