Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
I'm using Motion theme's latest version in that I need to make the first(marked) sales point alone background color alone wants to be changed on the product page.
website: https://zype5rktf4t9uxip-67925410094.shopifypreview.com
Thanks in advance
Solved! Go to the solution
This is an accepted solution.
Hi @Sivadarshan
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
li.sales-point:nth-child(1) {
background: bisque !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Which color do you want?
This is an accepted solution.
Hi @Sivadarshan
1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css / based.css file and paste the code in the bottom of the file.
li.sales-point:nth-child(1) {
background: bisque !important;
}
Result:
If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!
Instead of "bisque," you can write whichever color you want. If you want to use a color name, write it just like "bisque." And if you're providing the color in hex code, give it like this: #ffff.