Category Tree

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zberrytnt3
    Mivite Lite

    • Apr 2006
    • 2

    #1

    Category Tree

    How do I remove the underline from the links in the category tree?
  • Scot - ScotsScripts.com
    Mivite








    • Apr 2006
    • 461

    #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

    • zberrytnt3
      Mivite Lite

      • Apr 2006
      • 2

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

      Comment

      Working...
      X