diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-26 01:42:00 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-05-26 01:42:00 +0000 |
commit | 03c98d3c79370157d94deef588415e778ab6ca87 (patch) | |
tree | 31d945dc1f59323eeebf861b615e1b1ad745f385 | |
parent | 0fe24ee312f7b95448b7415ff4e33e757950fa3c (diff) |
header can appear more than one time, so is a class, not an id
-rw-r--r-- | basewiki/style.css | 2 | ||||
-rw-r--r-- | templates/editpage.tmpl | 4 | ||||
-rw-r--r-- | templates/inlinepage.tmpl | 2 | ||||
-rw-r--r-- | templates/misc.tmpl | 2 | ||||
-rw-r--r-- | templates/page.tmpl | 3 | ||||
-rw-r--r-- | templates/recentchanges.tmpl | 2 |
6 files changed, 7 insertions, 8 deletions
diff --git a/basewiki/style.css b/basewiki/style.css index a830afb69..43570279d 100644 --- a/basewiki/style.css +++ b/basewiki/style.css @@ -1,4 +1,4 @@ -#header { +.header { margin: 0; font-size: 22px; font-weight: bold; diff --git a/templates/editpage.tmpl b/templates/editpage.tmpl index b7ec3fa2b..89f01e664 100644 --- a/templates/editpage.tmpl +++ b/templates/editpage.tmpl @@ -20,7 +20,7 @@ confict and commit again to save your changes. </p> </TMPL_IF> <TMPL_VAR FORM-START> -<div id="header"> +<div class="header"> <span><TMPL_VAR INDEXLINK>/ <TMPL_VAR FORM-TITLE></span> </div> <TMPL_VAR FIELD-DO> @@ -40,7 +40,7 @@ Optional comment about this change:<br /> <TMPL_VAR FORM-END> <hr /> <TMPL_IF NAME="PAGE_PREVIEW"> -<div id="header"> +<div class="header"> <span>Page preview:</span> </div> <div id="content"> diff --git a/templates/inlinepage.tmpl b/templates/inlinepage.tmpl index 39afc7f98..bcb61335d 100644 --- a/templates/inlinepage.tmpl +++ b/templates/inlinepage.tmpl @@ -1,5 +1,5 @@ <div class="inlinepage"> -<span id="header"><TMPL_VAR PAGELINK></span> +<span class="header"><TMPL_VAR PAGELINK></span> <TMPL_VAR CONTENT> diff --git a/templates/misc.tmpl b/templates/misc.tmpl index 3187f5892..d50fba423 100644 --- a/templates/misc.tmpl +++ b/templates/misc.tmpl @@ -11,7 +11,7 @@ </head> <body> -<div id="header"> +<div class="header"> <span> <TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE> </span> diff --git a/templates/page.tmpl b/templates/page.tmpl index fc0094121..c683d72a2 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -8,7 +8,7 @@ </head> <body> -<div id="header"> +<div class="header"> <span> <TMPL_LOOP NAME="PARENTLINKS"> <a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a>/ @@ -41,7 +41,6 @@ <TMPL_IF NAME="DISCUSSIONLINK"> <li><TMPL_VAR DISCUSSIONLINK><br /></li> </TMPL_IF> - </ul> </div> diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl index 389f98cb3..e7d7e10dd 100644 --- a/templates/recentchanges.tmpl +++ b/templates/recentchanges.tmpl @@ -11,7 +11,7 @@ </head> <body> -<div id="header"> +<div class="header"> <span> <TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE> </span> |