View
 

How to remove the Continue Shopping button

Page history last edited by Eugene 1 year, 2 months ago


 

The product page

In order to remove the big Continue Shopping button which appears when you add a product to a cart from the product page, apply this CSS code: 

 

div.ecwid-productBrowser-backgroundedPanel div.ecwid-ContinueShoppingButton { 
  display:none; 

 

 

The cart page

Apply this CSS code: 

 

button.ecwid-productBrowser-cart-continueShoppingButton { 
  display:none; 

 

 

The empty cart page

Apply this code:

 

div.ecwid-productBrowser-cart-emptyCartPanel button { 
  display:none; 

 

 

The Your Account page

Apply this CSS code: 

 

div.ecwid-Account-ContinueShoppingButtonContainer { 
  display:none; 

 

 

The "Thank you for your order" page

Apply this CSS code: 

 

button.ecwid-ContinueShoppingButton-Invoice { 
  display:none; 

 

 

Remove this button from all pages

Apply this code:

 

div.ecwid-productBrowser-backgroundedPanel div.ecwid-ContinueShoppingButton, 
button.ecwid-productBrowser-cart-continueShoppingButton, 
div.ecwid-productBrowser-cart-emptyCartPanel button,
div.ecwid-Account-ContinueShoppingButtonContainer, 
div.ecwid-productBrowser-search-ContinueShoppingButtonContainer,  
button.ecwid-ContinueShoppingButton-Invoice { 
  display:none;