I have always had this issue - maybe it’s time to see if I can have it resolved.
Upon checkout, my “apply” button for coupon codes has always been so far to the right that it’s cut off. Is there any easy way to allow it to be within the frame of the checkout window?
Others can be more precise here than I. But for want of another answer. Inspect the item in your browser (in the storefront/customer view). You should be able to hover or click on the item and that will show up in the browser. Identify the tag and then align it in css (switch to style view, this opens panel on left, go to custom css) and enter custom css which will be …
.my_tag {
text-align: left;
}
1 Like
Please share or PM me URL of your website and temporary promo code
1 Like
Please try to add the following code to the CSS section of the Theme Editor
.ty-discount-coupon__control-group .ty-btn-go {
right: 0;
border-left: 1px solid #cdcdcd;
background: #d9d9d9;
}
2 Likes
Thank you so much, that worked!!
2 Likes