Hello @sleddogslow,
The issue is caused by the style definition:
input,
textarea {
transition: all 0.18s;
display: inline-block;
font-size: inherit;
letter-spacing: 2px;
width: 100%;
max-width: 100%;
height: 36px;
padding: 8px 12px 6px 15px;
line-height: normal;
background-color: #ebebeb;
background-image: none;
border: none;
}
into the “https://www.sleddogslow.com/wp-content/themes/olsen/style.css” file of the theme active in your WordPress.
Specifically by the css rule: width: 100%;
A possible solution:
Open the “https://www.sleddogslow.com/wp-content/plugins/sell-downloads/sd-styles/sd-public.css” file with the text editor of your choice, and paste the following style definition at the end of the file’s content:
.sell-downloads-product input[ type=image ]{width:auto !important;}
Finally, clear the browser’s cache after edit the online files.
Best regards.