Posted - 01/16/2026 : 11:20:30
Some WordPress themes set button styles using... input[type="button"] This means that in ectcart.css in order to set the default values for cart buttons we now use... input[type="button"].ectbutton, input[type="submit"].ectbutton However this now means that in your site style sheet, if you have just have input.ectbutton the default from ectcart.css will be used instead. If this is the case, (for instance your buttons are displaying as the default blue color) just search in your style sheet for... input.ectbutton ...and replace that with... input[type="button"].ectbutton, input[type="submit"].ectbutton If you have also changed the hover values then search for... input.ectbutton:hover ...and replace that with... input[type="button"].ectbutton:hover,input[type="submit"].ectbutton:hover Vince Click Here for Shopping Cart SoftwareClick Here to sign up for our newsletterClick Here for the latest updater
|