diff options
author | Thomas Willingham <founder@kakste.com> | 2013-02-20 22:09:40 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-02-20 22:09:40 +0000 |
commit | 21317ee953c68b1888e801f8728f5e7a606f6286 (patch) | |
tree | 9bbca2847dca31ba79f9824d4a40cda901aa04e9 /view/theme/redbasic/php | |
parent | ce77a80972d26ebeed5b90ebe9b8d31a1099c2a6 (diff) | |
download | volse-hubzilla-21317ee953c68b1888e801f8728f5e7a606f6286.tar.gz volse-hubzilla-21317ee953c68b1888e801f8728f5e7a606f6286.tar.bz2 volse-hubzilla-21317ee953c68b1888e801f8728f5e7a606f6286.zip |
Fix font size. That should never have worked in the first place.
Diffstat (limited to 'view/theme/redbasic/php')
-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 450cabc7c..f9e70d4ff 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -62,7 +62,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; }\r\n"; + echo ".wall-item-content { font-size: $redbasic_font_size\px;}\r\n"; } if(($line_height >= 1.0) && ($line_height <= 2.0)) { |