Add this code to the Custom CSS field on the Appearance tab of your Pricing Table widget’s settings:
Grid:
.es-column-container:nth-child(2) .es-features-feature::before,
.es-column-container:nth-child(2) .es-features-feature::after {
content: none;
}
Carousel:
.es-layout-carousel-grid .es-column-container:nth-child(2) .es-features-feature::before,
.es-layout-carousel-grid .es-column-container:nth-child(2) .es-features-feature::after,
.es-snap-carousel-item:nth-child(2) .es-features-feature::before,
.es-snap-carousel-item:nth-child(2) .es-features-feature::after {
content: none;
}
Classic Table:
.es-layout-classic-table-container:not(:has(.es-snap-carousel-wrapper)) .es-column-container:nth-child(2) .es-features-feature::before,
.es-layout-classic-table-container:not(:has(.es-snap-carousel-wrapper)) .es-column-container:nth-child(2) .es-features-feature::after,
.es-snap-carousel-item:nth-child(2) .es-features-feature::before,
.es-snap-carousel-item:nth-child(2) .es-features-feature::after {
content: none;
}
Comparison Table:
.es-layout-comparison-table-container:not(:has(.es-snap-carousel-wrapper)) .es-column-container:nth-child(2) .es-features-feature::before,
.es-layout-comparison-table-container:not(:has(.es-snap-carousel-wrapper)) .es-column-container:nth-child(2) .es-features-feature::after,
.es-layout-comparison-table-snap-carousel .es-snap-carousel-item:nth-child(2) .es-features-feature::before,
.es-layout-comparison-table-snap-carousel .es-snap-carousel-item:nth-child(2) .es-features-feature::after,
.es-layout-comparison-table-mobile-snap-carousel .es-snap-carousel-item:nth-child(1) .es-features-feature::before,
.es-layout-comparison-table-mobile-snap-carousel .es-snap-carousel-item:nth-child(1) .es-features-feature::after {
content: none;
}
Comparison Table Head Column:
.es-layout-comparison-table-container:not(:has(.es-snap-carousel-wrapper)) .es-column-container:nth-child(1) .es-features-feature::before,
.es-head-column-container .es-features-feature::before {
content: none;
}
In all codes, you should replace the numbers in the brackets with the number of the needed columns:
The correct column number in the last 2 lines of the Comparison table code is actual number-1. So, if the actual column number is 2, you should add 1: