Hey Dave,
Thanks for using our plugins and welcome to the forums! Let me try to help you with that misalignment.
I haven’t been able to find any other future events on your site that sells tickets, so I couldn’t compare. The issue with the misaligned buttons comes most probably from the theme you are using. You can try to test how it looks with a default theme like twentysixteen .
In order do hide those two buttons add the following little snippet to your theme’s (preferably child theme’s) style.css file:
.edd.quantity .minus, .edd.quantity .plus {
display: none;
}
This will cause some misalignment, so I also recommend adding this, that should provide a fix:
.edd.quantity input.edd-input {
display: inline;
margin-right: 10px;
margin-top: 20px;
text-align: center;
width: 50%;
}
Let me know if this helps.
Cheers,
Andras