Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Yannick Lefebvre

    (@jackdewey)

    I used some custom code in my stylesheet to get this result. Go the to Stylesheet editor in the WordPress admin under the Link Library section of the menu and add the following lines:

    .linklist table tr:nth-child(odd) td {
        background-color: #ddd;
    }
    
    .linklist table tr:nth-child(even) td {
        background-color: #eee;
    }

    Please consider leaving a rating for this plugin or donating to support its ongoing development.

    Thread Starter tradeoffice

    (@tradeoffice)

    Thanks for the quick response
    sadly the update didnt seem to have any effect on the [link-library-cats] table rows

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    For the category table rows, you can use a very similar syntax:

    .linktable table tr:nth-child(odd) td {
        background-color: #ddd;
    }
    
    .linktable table tr:nth-child(even) td {
        background-color: #eee;
    }

    Please consider leaving a rating for this plugin or donating to support its ongoing development.

    Thread Starter tradeoffice

    (@tradeoffice)

    That did the trick! thanks much

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Link Cat Row Colour’ is closed to new replies.