Plugin Support
ijas
(@ijasacodez)
Currently plugin don’t have option to make pricing table vertical on mobile, you can do the same by adjusting the css styles (using @media rules), if needed we can help you with the same.
Yes please help me with that, can you give me the correct CSS styling for media rules ?
Plugin Support
ijas
(@ijasacodez)
Sorry for the delay, please paste this code on your css file or wordpress custom css section (Appearance -> Customize -> Additional CSS):
@media screen and (max-width: 600px) {
table.wdp_table { width:100%; }
table.wdp_table tbody.wdp_table_body { width:300px; display:block; }
table.wdp_table tbody.wdp_table_body tr { display:inline-block; width:50%; box-sizing:border-box; }
table.wdp_table tbody.wdp_table_body tr td {display: block; text-align:left;}
}
Plugin Support
ijas
(@ijasacodez)
Please note the code is written for devices below 600px width, please change the value if needed. We are marking this thread as resolved, please feel free to open a new thread if you have any further queries. Thanks.