Change background color for a certain line

Add this code to the Custom CSS field on the Appearance tab of your Pricing Table widget’s settings:

.eapps-pricing-table-column-2
.eapps-pricing-table-column-features-item:nth-child(2) {
background: black;
}

Do not forget to add the number of the needed column in column-2 part and the line number in nth-child(2)

Hey Max, I am trying to use this code for my table here. (https://f4c48060e82746a49adb320d9d707e6a.elf.site). Unfortunately, I can not seem to get this to work. Or is there a solution to modify the background colour of any listed feature instead of changing the entire row or the entire column?

1 Like

Hi there, @user11212 :waving_hand:

You’re right, that code is a bit outdated, but I see you’ve already found a working solution and added it to your widget:

.es-features-feature:nth-child(2) {
  background-color: green;
}

Please let me know if everything is fine now or if you have any questions left :slightly_smiling_face:

2 Likes