summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/header.html.tmpl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-06-13 02:35:34 +0200
committerlpsolit%gmail.com <>2006-06-13 02:35:34 +0200
commit2f96220dd6be3293962174d799d5356f872b0254 (patch)
treeea200af5f06219caf7effcb03e7a29666a774562 /template/en/default/global/header.html.tmpl
parent3e81855fc65b49d05bf0dc0d1a1cf1b1b044f8f4 (diff)
downloadbugzilla-2f96220dd6be3293962174d799d5356f872b0254.tar.gz
bugzilla-2f96220dd6be3293962174d799d5356f872b0254.tar.xz
Bug 340426: Add a navbar at the top of each pages + have a better title - Patch by Frédéric Buclin <LpSolit@gmail.com> and Byron Jones <bugzilla@glob.com.au> r=glob a=justdave
Diffstat (limited to 'template/en/default/global/header.html.tmpl')
-rw-r--r--template/en/default/global/header.html.tmpl18
1 files changed, 13 insertions, 5 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl
index 959bf5a99..a18e860fb 100644
--- a/template/en/default/global/header.html.tmpl
+++ b/template/en/default/global/header.html.tmpl
@@ -125,19 +125,27 @@
[% INCLUDE global/banner.html.tmpl %]
-<div id="header">
+<table border="0" cellspacing="0" cellpadding="0" id="header">
+<tr>
[% IF h1 %]
- <h1>[% h1 %]</h1>
+ <td>
+ <h1>[% h1 %]</h1>
+ </td>
[% END %]
[% IF h2 %]
- <h2>[% h2 %]</h2>
+ <td>
+ <h2>[% h2 %]</h2>
+ </td>
[% END %]
[% IF h3 %]
- <h3>[% h3 %]</h3>
+ <td>
+ <h3>[% h3 %]</h3>
+ </td>
[% END %]
-</div>
+</tr>
+</table>
[% IF message %]
<div id="message">[% message %]</div>