• Resolved erinanne

    (@erinanne)


    I love WP-Table Reloaded (thanks again, Tobias!).

    I’m using it now on a site that has the CSS set NOT to underline links. When I modified the CSS for the tables I’ve set up, however, suddenly the links are underlined.

    Adding text-decoration: none!important; into the custom CSS box, for example:

    .wp-table-reloaded-id-3 th, .wp-table-reloaded-id-3 .sorting {
      background-color: #91c8d0!important;
      font-size: 15px;
      color: #666666;
      line-height: 25px;
      text-decoration: none!important;
    }

    isn’t fixing this.

    Does anyone have any other ideas that can help me out?

    Page: http://www.demo.assantevancouver.com/directory/advisor-directory/

    Many thanks!

    ea/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try this:

    .wp-table-reloaded a:link, .wp-table-reloaded a:visited {
      text-decoration: none !important;
    }

    It’s the anchor tags themselves you want to remove the links from.

    I tried a live edit on your site with this code in Firebug and it works.

    Thread Starter erinanne

    (@erinanne)

    Terrific! Thx, zoonini!

    🙂

    ea/

    Hi,

    yes, that text-decoration command needed to be applied to the actual link (a) and not just the cells (td). Thanks for finding this, zoonini!

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing underlines from links in WP-Table Reloaded’ is closed to new replies.