Hi! I’m looking to change the border color around the boxes on my page. It looks like a darker brown color right now but looking to change it.
https://vibesbynye.myshopify.com/
Thanks in advance!
Hi! I’m looking to change the border color around the boxes on my page. It looks like a darker brown color right now but looking to change it.
https://vibesbynye.myshopify.com/
Thanks in advance!
Hi @vibesbynye , go to edit code > assets > base.css and find this:
.content-container {
border-radius: var(--text-boxes-radius);
border: var(--text-boxes-border-width) solid rgba(var(--color-foreground),var(--text-boxes-border-opacity));
position: relative;
}
Change it with:
.content-container {
border-radius: var(--text-boxes-radius);
border: var(--text-boxes-border-width) solid red;
position: relative;
}
Change ‘red’ with the value you’d like. I’ve used red as an example.
Thank you for the reply,
I am referring to changing the color of the actual boxes that are already
embedded in the theme. I’ve attached photos.
Thanks so much!
[image: Screenshot 2022-07-07 10.30.50 AM.png]
[image: Screenshot 2022-07-07 10.30.40 AM.png]
[image: Screenshot 2022-07-07 10.30.32 AM.png]
Hi Marina, this did not work. This placed a border around the entire container but not the individual containers that are already there.