Adjust pricing tables on iPad

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #15340
    NickII
    Member

    Currently, when viewing the pricing tables (4) on an iPad (regular) the pricing table stacks itself to 2 on 2.

    How do I force it to display as the full 4 options in one line as it does on larger screens?

    #15341
    NickII
    Member
    This reply has been marked as private.
    #15348
    Veena
    Moderator

    Pls use the below custom CSS in themeoptions –

    @media only screen and (max-width: 1024px){
    .pricing-table .threecol.zero-margin {
      width: 25%;
    }}
    
    #15352
    NickII
    Member

    Thanks. Is there a way for it to display like that for iPads but revert to the original settings for iPhones etc? If you look at the site now it’s a bit weird if viewed on there.

    #15356
    Veena
    Moderator

    You can use the below custom CSS –

    @media only screen and (max-width: 767px){
    .pricing-table .threecol.zero-margin {
    width: 50% !important;
    }}
    @media only screen and (max-width: 479px){
    .pricing-table .threecol.zero-margin {
      width: 100% !important;
    }}
    
    #15367
    NickII
    Member

    Fantastic. Thanks!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Adjust pricing tables on iPad’ is closed to new replies.