diff options
| author | Scott Ostler <sostler@deathmachine.local> | 2010-03-15 22:42:26 -0400 |
|---|---|---|
| committer | Scott Ostler <sostler@deathmachine.local> | 2010-03-15 22:42:26 -0400 |
| commit | 03076bcae8a7b3053624d2cc6c5cef8acf1b9680 (patch) | |
| tree | 0436867f1d7bdf93f6ab5d8bf8d5f65f2393fed2 | |
| parent | 4011f9dcc57678a24cefd7c06cfaeb3d53cc93c7 (diff) | |
Removed closing a tag
| -rwxr-xr-x | template/chat.st | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/template/chat.st b/template/chat.st index 0d453d8..bfef310 100755 --- a/template/chat.st +++ b/template/chat.st @@ -15,8 +15,6 @@ var IsAdmin = false; $endif$ </script> - <script type="text/javascript"> -</script> <script src="/static/away.js"></script> <script src="/static/js/ajaxupload.js"></script> <script> @@ -26,6 +24,13 @@ }); } </script> + <style> + #topic { + z-index: 5000; + display: inline; + background-color: white; + } + </style> </head> <body onload="MM_preloadImages('/static/thumbs_up_sm.gif')"> $banner()$ @@ -50,8 +55,7 @@ <div class="msgDiv oldmsg" id="message-$m.message_id$"><b> <a href="/u/$m.nick$">$m.nick$</a>: </b> - <span class="content">$m.content$ -</a><span> + <span class="content">$m.content$<span> <div id="faving" style="display:none;"> |
