我正在用 Drupal 7 开发一个网站
http://lorrells.seoperspective.com/
现在问题是侧边栏菜单(左侧)我的客户想要如下图所示的内容
意味着他想要链接下方的少量文本,所以我想在下面添加“标题”文本,以便我可以设置它的样式
我想要的是
<ul>
<li class="menu-359 first"><a class="Litigation" title="Our niche Litigation Department punches well above its weight." href="http://lorrells.seoperspective.com/Litigation">Litigation</a><span>Our niche Litigation Department punches well above its weight.</span></li>
</ul>
page.tpl.php 中的代码
<div class="sidebar_menu">
<?php
$menu = menu_navigation_links('menu-sidebarmenu');
print theme('links__menu-sidebarmenu', array('links' => $menu));
?>
</div>