diff --git a/static/css/aowow.css b/static/css/aowow.css
index 77a9f79b..391a59ef 100644
--- a/static/css/aowow.css
+++ b/static/css/aowow.css
@@ -171,10 +171,6 @@ h5 a.icontiny span { text-decoration:none !important; }
width: 47%;
}
-.random-enchantments span{
- cursor: help;
-}
-
h1.h1-icon {
padding-top: 5px !important;
}
diff --git a/template/pages/achievement.tpl.php b/template/pages/achievement.tpl.php
index 6c037e67..e7de7bc3 100644
--- a/template/pages/achievement.tpl.php
+++ b/template/pages/achievement.tpl.php
@@ -37,7 +37,7 @@ foreach ($this->criteria['data'] as $i => $cr):
echo '
';
endif;
- echo '';
+ echo ' | ';
if (!empty($cr['link'])):
echo ''.Util::htmlEscape($cr['link']['text']).'';
@@ -51,11 +51,7 @@ foreach ($this->criteria['data'] as $i => $cr):
echo ' '.$cr['extraText'];
endif;
- if (User::isInGroup(U_GROUP_STAFF)):
- echo ' ['.$cr['id'].']';
- endif;
-
- echo ' | ';
+ echo '';
// every odd number of elements
if ($i + 1 == round(count($this->criteria['data']) / 2)):
diff --git a/template/pages/item.tpl.php b/template/pages/item.tpl.php
index a92b8567..8717f9a6 100644
--- a/template/pages/item.tpl.php
+++ b/template/pages/item.tpl.php
@@ -48,7 +48,7 @@ if (!empty($this->subItems)):
$eText[] = ''.$txt.'';
endforeach;
- echo ' ...'.$i['name'].'';
+ echo '
...'.$i['name'].'';
echo ' '.sprintf(Lang::item('_chance'), $i['chance']).'
'.implode(', ', $eText).'
';
endif;
endforeach;
@@ -68,7 +68,7 @@ if (!empty($this->subItems)):
$eText[] = '
'.$txt.'';
endforeach;
- echo '
...'.$i['name'].'';
+ echo '
...'.$i['name'].'';
echo ' '.sprintf(Lang::item('_chance'), $i['chance']).'
'.implode(', ', $eText).'
';
endif;
endforeach;