How to remove boarder from cart box

Solved

How to remove boarder from cart box

undercoverfresh
Excursionist
138 0 19

IMG_7385.jpeg

I’m looking to remove the bug where I add something to the cart and the box stays highlighted this only happens on mobile this started to show up at times when I added the code

.thumbnail-list__item { width: 80px !important; height: 80px !important; } To base.css on dawn theme to fix the thumbnail carousel sizing. 

url knmb1c-pf.myshopify.com

password samurai 

 

 

 

 

 

 

Accepted Solution (1)

LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

Hi Undercoverfresh

- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

 

.focus-inset:focus-visible {
    outline: none !important;
    outline-offset: unset !important;
    box-shadow: unset !important;
}

 

 

Result: 

LizHoang_0-1739161921003.png

 

Best,

Lizz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program

View solution in original post

Replies 2 (2)

LizHoang
Shopify Partner
1251 159 196

This is an accepted solution.

Hi Undercoverfresh

- You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

 

 

.focus-inset:focus-visible {
    outline: none !important;
    outline-offset: unset !important;
    box-shadow: unset !important;
}

 

 

Result: 

LizHoang_0-1739161921003.png

 

Best,

Lizz

 

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Check our Joy Rewards & Loyalty Program
undercoverfresh
Excursionist
138 0 19

This worked thank you