Solved

Change text size of instruction for seller on cart page

Hana29
Excursionist
26 0 3

Hi,

We have amended the text of " instruction for seller" to "Memo" on cart page.

However the text size became bigger and cannot back to previous size.

We would appreciate it if anyone help for it...

Shop link:https://delivery.samurice.asia

Thank you.

Accepted Solution (1)

diego_ezfy
Shopify Partner
2958 568 890

This is an accepted solution.

@Hana29 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > theme.scss.liquid and paste this at the bottom of the file:

 

.template-cart label[for="CartSpecialInstructions"]{
    font-size: 15px !important;
}


You can change the value 15px to anything you want. 

let me know whether it works, thank you

◦ Follow my blog & youtube for coding tutorials.
◦ Replace apps with copy/paste code snippets and save money.

View solution in original post

Replies 4 (4)

diego_ezfy
Shopify Partner
2958 568 890

This is an accepted solution.

@Hana29 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > theme.scss.liquid and paste this at the bottom of the file:

 

.template-cart label[for="CartSpecialInstructions"]{
    font-size: 15px !important;
}


You can change the value 15px to anything you want. 

let me know whether it works, thank you

◦ Follow my blog & youtube for coding tutorials.
◦ Replace apps with copy/paste code snippets and save money.
Hana29
Excursionist
26 0 3

It works perfectly!

Thank you for helping again!:)

Have a great day.

diego_ezfy
Shopify Partner
2958 568 890

My pleasure! Have a nice day.

◦ Follow my blog & youtube for coding tutorials.
◦ Replace apps with copy/paste code snippets and save money.
CarmelR
Tourist
5 0 0

Hi there, thanks for the solution, it worked for my 'instructions for seller' but I have tried to do the same for the gift wrap check box and gifting message using code below in the same place but it hasn't worked. Any thoughts?

 

.template-cart label[for="CartSpecialInstructions"]{
font-size: 20px !important;
.template-cart label[for="gift-note"]{
font-size: 20px !important;

.template-cart label[for="gift-wrapping"]{
font-size: 20px !important;
}

 

Thank you!