diff options
| -rw-r--r-- | scuttle.css | 7 | ||||
| -rw-r--r-- | templates/sidebar.block.menu2.php | 7 | 
2 files changed, 11 insertions, 3 deletions
| diff --git a/scuttle.css b/scuttle.css index 988b551..4d1b0ee 100644 --- a/scuttle.css +++ b/scuttle.css @@ -153,9 +153,14 @@ h2 {      text-transform: lowercase;  }  h2 a, h2 a:hover { -	color: #DDD; +    color: #DDD;  } +/*sup { +    color: #77ABE0; +    font-weight: bold; +}*/ +  /* NAVIGATION */  ul#navigation { diff --git a/templates/sidebar.block.menu2.php b/templates/sidebar.block.menu2.php index dafadcc..8329ef3 100644 --- a/templates/sidebar.block.menu2.php +++ b/templates/sidebar.block.menu2.php @@ -22,10 +22,13 @@ if (sizeOf($menu2Tags) > 0) {  	$this->includeTemplate("dojo.inc");  	?> -<h2><?php echo '<span>'.T_('Featured Menu Tags').'</span> ';?></h2> +<h2><?php echo T_('Featured Menu Tags');?></h2> -<div id="maintagsmenu"><?php +<div id="maintagsmenu" +<?php echo 'title="'.T_('This menu is composed of keywords (tags) organized by admins.').'"'?>> + +<?php  foreach($menu2Tags as $menu2Tag) {  	echo '<div dojoType="dojo.data.ItemFileReadStore" url="'.ROOT.'ajax/getadminlinkedtags.php?tag='.filter($menu2Tag, 'url').'" jsid="linkedTagStore" ></div>'; | 
