Hi great theme,
2 issues.
1. The pricing table currency sign is not the same color as the price. Black vs white. Please see the website example.
2. The rows contain different alternating font colors. Grey vs light grey. I’ve tried .main_color strong, .alternate_color strong { color: inherit; } but that also changes the price on the top to be grey.
Thanks!
Hey awdburn1!
Please add following code to Quick CSS
.pricing-table li.avia-pricing-row small, .pricing-table li.avia-pricing-row .currency-symbol {
opacity: 1;
color: inherit;
filter: alpha(opacity=100);
text-shadow: none;
}
.main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
color: inherit;
}
Best regards,
Yigit
Thanks Yigit,
This solves the alternating color issues but the price and currency values also inherit the grey consistent color. How do I have the price/currency value remain white?
Best
Hey!
as far as I can see they this row is already white. Anyway, you can control it using this:
.main_color .pricing-table li.avia-pricing-row, .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-pricing-row .pricing-extra {
color: white;
}
Best regards,
Andy