diff options
author | vdigital <vdigital@piwigo.org> | 2007-01-29 06:39:27 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2007-01-29 06:39:27 +0000 |
commit | e68673166b5d677b92f4493ee1448fde7e352ea1 (patch) | |
tree | 583c8248554cbc34be8d29ff313dcc1f59162e76 | |
parent | 7ee3f5579aab21257d236e6f8aa853cd639ff460 (diff) |
Solved 2 coding errors on css font-family in default-layout.css
Default font is "Bitstream Vera Sans" which would not be a problem for Linux platforms
if you can check that on other platforms (not only one).
git-svn-id: http://piwigo.org/svn/trunk@1764 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/default-layout.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/yoga/default-layout.css b/template/yoga/default-layout.css index 0dc87eec2..94357b657 100644 --- a/template/yoga/default-layout.css +++ b/template/yoga/default-layout.css @@ -4,7 +4,7 @@ BODY { margin: 5px; padding: 0; font-size: 0.8em; - font-family: Bitsream Vera Sans, Helvetica, Arial, sans-serif; + font-family: "Bitstream Vera Sans", Helvetica, Arial, sans-serif; text-align: center; /* be nice to IE5 */ } |