Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Treeview > Remove underline for visited URL's
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Answered Remove underline for visited URL's

Feed from this thread
  • Arthur avatar

    Posted on Apr 28, 2011 (permalink)

    I am using the Treeview control and would like to remove the underlines from visited URL's.
    Thank you!

  • Answer Shinu MVP avatar

    Posted on Apr 29, 2011 (permalink)

    Hello Arthur,

    You can use the pseudo-class :visited to remove the underline of a link to indicate that it is visited. For example:
     
    CSS:
    .RadTreeView a:visited
    {
       text-decoration:none ;
    }

    Thanks,
    Shinu.

  • Arthur avatar

    Posted on Apr 29, 2011 (permalink)

    Thank you! Worked perfectly

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Treeview > Remove underline for visited URL's