Tagged: Pricing Table, text wrap
In the pricing table I have a price listed as “¥20,214”
It’s a monthly price, which in Japanese should be “¥20,214/ 月”
Unfortunately, the “/ 月” (per month) is wrapping to the next line. I would like the text to be small so I used the “small” tag, but I can’t seem to figure out how to make the text not wrap.
Similarly, further down the page, in the part that indicates “¥23,917~/ 月”, both the “~” and the “/ 月” are wrapping.
Can you please advise?
Thank you.
Hey jabbler,
Kindly add this code to Quick CSS (located in Enfold > General Styling):
.avia_pricing_default .pricing-table li.avia-pricing-row small {
display: inline-block;
}
or this one if the code above doesn’t work
.avia_pricing_default .pricing-table li.avia-pricing-row small {
display: inline-block !important;
}
Best regards,
Nikko
This one also seems resolved.
Thank you!