Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    The size of “Add To Cart” button is being modified by the style definition:

    input, select {
        width: 200px;
    }

    in the css file of the theme active in your website:

    https://cds.thejpenn.com/wp-content/themes/eprom_1_4_5/styles/dark.css

    To prevent the button be modified by the theme, please, follows the steps below:

    1. Open the “/wp-content/plugins/music-store/ms-styles/ms-public.css” file with the text editor your choice.

    2. Go to the style definition:

    .music-store-song input[ type=image ],
    .music-store-collection input[ type=image ],
    .song-payment-buttons input,
    .collection-payment-buttons input{background:transparent;}

    and modify it as follows:

    .music-store-song input[ type=image ],
    .music-store-collection input[ type=image ],
    .song-payment-buttons input,
    .collection-payment-buttons input{
    background:transparent;
    width: auto !important;
    }

    3. Finally, clear the browser’s cache after edit the online file.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘"Add to Cart" button too big’ is closed to new replies.