diff options
-rw-r--r-- | mod/test/views/default/css.php | 15 | ||||
-rw-r--r-- | mod/test/views/default/pageshells/pageshell.php | 1 |
2 files changed, 16 insertions, 0 deletions
diff --git a/mod/test/views/default/css.php b/mod/test/views/default/css.php index de4b5146b..440174624 100644 --- a/mod/test/views/default/css.php +++ b/mod/test/views/default/css.php @@ -134,3 +134,18 @@ form { .profiletable .fieldname {
background-color: #C6DEFD;
}
+
+#topmenu {
+ position:absolute;
+ top:2px;
+ right:10px;
+}
+
+#topmenu li {
+ display:inline;
+ list-style:none;
+}
+
+#topmenu a {
+ color:#fff;
+}
\ No newline at end of file diff --git a/mod/test/views/default/pageshells/pageshell.php b/mod/test/views/default/pageshells/pageshell.php index 88aa3f3f2..32ed19237 100644 --- a/mod/test/views/default/pageshells/pageshell.php +++ b/mod/test/views/default/pageshells/pageshell.php @@ -40,6 +40,7 @@ <table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td id="pagetop"><a href="<?php echo $vars['url']; ?>"><img src="<?php echo $vars['wwwroot']; ?>mod/test/graphics/purplecrayon.gif" alt="Elgg" width="227" height="70" border="0" /></a></td>
+ <td><?php echo elgg_view('navigation/topmenu'); ?></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|