Anyone know how I could go about changing ribbon size for mobile. it over laps my column title on mobile only. if anything maybe remove it for mobile only? any customCSS?
1 Like
Hi @seltz, apologies for the long wait!
Unfortunately, there is no built-in option to change a ribbon size, but you can use this CSS code as a workaround. Just add it to the Custom CSS section in your widget’s Appearance tab:
@media (max-width: 480px) {
.eapps-pricing-table-column-ribbon-container {
transform: scale(0.7);
transform-origin: top right;
}
}
Let me know if it worked