Need help expanding the "order notes" by default on the cart page

Solved

Need help expanding the "order notes" by default on the cart page

bcfoodieguy
Excursionist
13 0 6

Hello! I am currently using the (rhymes with Barehouse) theme and am dealing with one small issue.

 

On our cart page: https://backcountryfoodie.myshopify.com/cart, underneath the cart total, we have order instructions.

Screen Shot 2024-01-04 at 11.04.47 AM.png

These are collapsed by default, but I'd like to have them open by default. I've been messing around with the main-cart.liquid file but can't seem to figure it out. Does anyone have a quick fix for this?


Thanks!

Accepted Solution (1)

Abdosamer
Shopify Partner
952 173 200

This is an accepted solution.

@bcfoodieguy , go to theme.css and add the following code :

div#order-note {
    overflow: visible !important;
    height: 12rem !important;
}
Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work

View solution in original post

Replies 2 (2)

Abdosamer
Shopify Partner
952 173 200

This is an accepted solution.

@bcfoodieguy , go to theme.css and add the following code :

div#order-note {
    overflow: visible !important;
    height: 12rem !important;
}
Buy me a Coffee
Email : abdelrahamansamer71@gmail.com
Chat on WhatsApp
My work
bcfoodieguy
Excursionist
13 0 6

That did it, thank you!