Hi there @Pradeep_Dodle
Unfortunately, I haven’t got any news yet. I’ve requested an update and will let you know once anything comes up
Hi there @Pradeep_Dodle
Unfortunately, I haven’t got any news yet. I’ve requested an update and will let you know once anything comes up
Hi there @Pradeep_Dodle
Thank you for waiting!
Alignment for the particular row - unfortunately, there is no way to customize the widget this way. I am really sorry! I’ve added your idea to the Wishlist, so you can keep an eye on it right here - Center align particular row
Stack toggle buttons next to each other on mobile:
@media (max-width: 480px) {
.eapps-pricing-table-toggle-inner {
flex-wrap: nowrap !important;
padding: 0 !important;
}
.eapps-pricing-table-toggle-item-hint {
display: block !important;
}
}
/* between toggles */
.eapps-pricing-table-toggle-inner {
gap: 0px;
}
/* between toggles and table*/
.eapps-pricing-table-toggle-container {
margin-bottom: 35px !important;
}
/* Toggle 1 */
.eapps-pricing-table-toggle-item-1 .eapps-pricing-table-toggle-item-name {
color: rgb(30, 249, 110);
background-color: rgba(30, 249, 110, 0.05);
}
/* Toggle 1 Active */
.eapps-pricing-table-toggle-item-1.eapps-pricing-table-toggle-item-active
.eapps-pricing-table-toggle-item-name {
color: rgb(30, 249, 110);
background-color: rgba(30, 249, 110, 0.1);
}
/* Toggle 2 */
.eapps-pricing-table-toggle-item-2 .eapps-pricing-table-toggle-item-name {
color: rgb(207, 24, 248);
background-color: rgba(207, 24, 248, 0.05);
}
/* Toggle 2 Active */
.eapps-pricing-table-toggle-item-2.eapps-pricing-table-toggle-item-active
.eapps-pricing-table-toggle-item-name {
color: rgb(207, 24, 248);
background-color: rgba(207, 24, 248, 0.1);
}
Check it out and let me know if it helped
Hi @Max ,
Is there an option to change the height of the pricing row? To be exact, I want to remove the padding (see image) on the website and on our mobile site.
Could you please send me a link to the page where your widget is installed?
www.superfone.in/pricing
Thanks!
I’ve passed it to the devs. Currently, they are out of the office, so I’ll get back to you on Monday
I think you can use this CSS code
div.eapps-pricing-table-column-features-container.eapps-pricing-table-column-item {
padding-top: 0px !important;
}
.eapps-pricing-table-column-features-container.eapps-pricing-table-column-item>div>div:first-child {
display: none !important;
}
The solution by @tuanphan is great, and I see that you’ve already added it to the widget.
If anything else comes up, feel free to let us know. We’ll be happy to help
A post was merged into an existing topic: Custom Icons
@Max Is there a way to change the alignment of the text (left / mid / right) of a particular column in the pricing table?
This code should help:
.eapps-pricing-table-columns-container-N .eapps-pricing-table-column-M * {
text-align: center !important;
}
Replace N with the number of the table and M with the number of column, where you’d like to change the alignment