href - CSS - Hyperlinks aren't going anywhere -


for reason i've been trying figure out, links on page clickable, aren't going anywhere. markup looks fine, , can't figure out if there's issue css rendering them useless. added in z-index tag, but, had no effect. note: css below taken firebug, not actual stylesheet...

markup:

<li class="">   <span id="thmr_93" class="thmr_call">   <a href="/edit/1">edit</a>   </span> </li> 

css:

.tabs ul.primary, .tabs ul.primary li {     float:left;     line-height:normal;     list-style-image:none;     list-style-position:outside;     list-style-type:none;     margin:0;     padding:0;     text-align:left; }  .tabs ul.primary li {     color:#008080;     text-decoration:none;     height:30px;     line-height:30px;     margin:10px;     width:100%;     z-index:100;     list-style-image:none;     list-style-position:outside;     list-style-type:none;     text-align:left; } 

i going guess, based on names of classes (.tabs ... etc) there javascript on page trying make tabs act dynamic tabs.

try removing <script> tags page (normally in head or @ bottom of page) , seeing if works.

if fixes it, on page taking control of markup add functionality. files named tabs.js or jquery-ui.js etc. of cause problem.


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -