Announcement

Collapse
No announcement yet.

Category Tree

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Category Tree

    How do I remove the underline from the links in the category tree?

    #2
    Make a class like this:

    .no-nderline {
    text-decoration: none;
    }

    or put this in your head tag:

    <style>
    .no-underline {
    text-decoration: none;
    }
    </style>

    then go into the category tree template and find the <a links and add the no underline class to them.

    LIke:

    <a class="no-underline" href="...">...</a>

    Or add an inline style like this:

    <a style="text-decoration: none;" href="...">...</a>

    But inline styles are not as good for page load and seo.
    M.A.D.* since 1997

    http://www.scotsscripts.com

    *miva application developers

    Comment


      #3
      Thank you , thank you, You da Man!

      Comment

      Working...
      X