diff options
author | mistic100 <mistic@piwigo.org> | 2013-06-14 20:39:53 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-06-14 20:39:53 +0000 |
commit | 699951a8e75b4651fb650005260934a9e64440d0 (patch) | |
tree | 3528c05d9402f891d096715b2f9d0ee532981630 | |
parent | aea33dbb25e1175265649f96b43848e1f50cbbf9 (diff) |
fix display of install page (when was it broken ?) + html5 doctype
git-svn-id: http://piwigo.org/svn/trunk@23211 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/install.tpl | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/admin/themes/default/template/install.tpl b/admin/themes/default/template/install.tpl index 58928fb45..ebb35fa89 100644 --- a/admin/themes/default/template/install.tpl +++ b/admin/themes/default/template/install.tpl @@ -1,5 +1,4 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" -"http://www.w3.org/TR/html4/strict.dtd"> +<!DOCTYPE html> <html lang="{$lang_info.code}" dir="{$lang_info.direction}"> <head> <meta http-equiv="Content-Type" content="text/html; charset={$T_CONTENT_ENCODING}"> @@ -44,13 +43,13 @@ body { font-size:12px; } -.content { - width: 800px; - margin: auto; - text-align: center; - padding:0; - background-color:transparent !important; - border:none; +#content { + width: 800px; + margin: auto; + text-align: center; + padding:0; + background-color:transparent !important; + border:none; } #theHeader { |