• Hi
    i have now tried for hours without luck trying to change the table rows color
    when i used even and odd i can change the even but not the odd.
    tr:nth-child(even) {background: #CCC}
    tr:nth-child(odd) {background: #FFF}

    and now i just want to remove the hover because i could not change the colors.

    i hope someone can help with that.

Viewing 1 replies (of 1 total)
  • Hi @joyking,

    You can change odd and even table rows color please use below code in custom css for this please goto Support Plus->Settings->Custom CSS.
    For odd table rows-
    .support_bs .table-striped > tbody > tr:nth-child(2n+1) > td {
    background-color: red;
    }
    For even table rows-
    .support_bs .table-striped > tbody > tr:nth-child(2n) > td {
    background-color: red;
    }
    And it will work on frontend only.

Viewing 1 replies (of 1 total)
  • The topic ‘disable hover effect’ is closed to new replies.