• Resolved sadavissr

    (@sadavissr)


    I am trying to have only table cells with text in them put blue lines on top and bottom of the cell on hover. But whenever I add the specific cell (.row-1 .column-1) to the CSS, the hover gets turned off. How do I specify only certain cells (td:hover) to put lines on top and bottom on hover? Here’s what my CSS says so far…

    .tablepress-id-14 td:hover {
    border-top: 3px solid #00009c;
    border-bottom: 3px solid #00009c;

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    You will essentially have to combine these two CSS selectors, e.g. like

    .tablepress-id-14 .row-1 .column-2:hover {
      border-top: 3px solid #00009c;
      border-bottom: 3px solid #00009c;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘specific Cell hover’ is closed to new replies.