Removes span tag from tabs
smd_ksu - August 14, 2009 - 21:54
| Project: | Menu Class |
| Version: | 6.x-1.0 |
| Component: | Miscellaneous |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
Adding the function to the template.php file removes the span tags from admin tab links causing the styling to mess up. So instead of:
<div class="tabs">
<ul class="tabs primary clear-block">
<li class="active">
<a class="active" href="#">
<span class="tab">View</span>
.....You get:
<div class="tabs">
<ul class="tabs primary clear-block">
<li class="active">
<a class="active" href="#">View</a>
......This messes up the default styling as the span tag is used in the CSS.
