Forum Moderators: open
what is happening when I enter <a href="#" class="toc">link here</a> within a bulleted list it does not work, but if I remove the class toc out of the listed and create it as a standard link out side of a list the glide content works with no problem
I need to have the toc class within a list because the design of my website will look better =P but I can't seem to make it work properly
<div id="p-select" class="glidecontenttoggler">
<a href="#" class="toc">about</a><a href="#" class="toc">about</a>
THE ABOVE WORKS (created out of list for testing)
<ul id="menu">
The Bottom TOC does not work, because it is listed.
<li><a href="#" class="toc">about</a></li>
<li><a href="#" class="toc">latest news</a></li>
</ul>
</div>
help please
ul.menu li a {
/* Your style definition as it was defined for a.toc */
} ...in your stylesheet.
If it is only the class selector which makes the behavior of the library go wrong, then you can circumvent the problem with this solution. You could also check the CSS Forum [webmasterworld.com] for further information about css selectors.