• Resolved mrtransplant

    (@mrtransplant)


    Hi. I need to change/highlight an entire column by color.
    .tablepress-id-2 .column-3 {
    background-color: #65a7dd;
    color: #ee6633;
    } changed the header color and changed and the text color, the rest of the descending column was not effected. I need the entire column color changed . Couldn’t find an answer in Forum. How? Thanks in advance. Great plugin!

    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.

    This is due to the CSS specificity of the CSS for the alternating rows. We’ll have to give your command a higher priority. For that, please try again with

    .tablepress-id-2 .column-3 {
      background-color: #65a7dd !important;
      color: #ee6633;
    }

    Note the !important flag, which will raise the priority.

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Alter entire Column’ is closed to new replies.