Quote Originally Posted by g2ktcf View Post
ON my checkout page, The CC icons spill out of the frame with Discover overlapping the next payment option. I tried uploading a screen shot but got "you have exceeded your limit". wlcartistry.com is the live site. This issue sounds familiar but I could not find anything by searching this thread.


ZC 2.0.1
OPC
Paypal Restful
Zelle
IH
Bootstrap
Clone a Template
Edit Orders
DBIO
Click image for larger version. 

Name:	Screenshot 2025-04-20 083859.png 
Views:	26 
Size:	26.8 KB 
ID:	20950

You would just need to increase the width of the div that contains the icons. I'm not familiar with the Bootstrap template but the code you are looking for is

Code:
.ppr-button-choice label {
  cursor: pointer;
  height: 4rem;
  font-weight: bold;
  width: 11rem;
  display: inline-block;
  text-align: center;
}
Increasing the width to say 14rem should do it

Click image for larger version. 

Name:	Screenshot 2025-04-20 084039.png 
Views:	22 
Size:	24.9 KB 
ID:	20951

That css code is shown as being inline so I'm not sure where it's located, perhaps in some javascript. The simplest way (perhaps the best?) is to add this to the end of your stylesheet.css

Code:
.ppr-button-choice label {
  width: 14rem!important;
}