Mobile phone

Comments

  • Hi,

    Please, try the following CSS code:

    1. @media only screen and (max-width:767px){
    2.    .products .button-custom.woocommerce .button, .button-custom .button{
    3.       padding: 10px 20px!important;
    4.    }
    5.  .products .mfn-li-product-row-button{
    6.    flex-wrap: wrap;
    7.    justify-content: center
    8.  }
    9. }

    Put it in Betheme -> Theme options -> Custom CSS & JS -> CSS.


    Thanks

  • Better but not centred

  • Please, replace the previous code with this one:

    1. @media only screen and (max-width:767px){
    2.   .products .button-custom.woocommerce .button, .button-custom .button{
    3.      padding: 10px 20px!important;
    4.  
    5.   }
    6.  .products .mfn-li-product-row-button{
    7.   flex-wrap: wrap;
    8.   justify-content: center
    9.  }
    10.  .wishlist-active.wishlist-button ul.products li.product:not(.align-right) .mfn-li-product-row-button,
    11.  .wishlist-active.wishlist-button ul.products li.product:not(.align-right) .mfn-li-product-row-button{
    12.    margin-right: 0!important;
    13.  }
    14. }

    Thanks

Sign In or Register to comment.