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 ![]()
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 ![]()
@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 ![]()