Here’s my store - circle6.shop
Topic summary
A user seeks help adding a border around a video container in the Dawn theme.
Another user provides step-by-step instructions:
- Navigate to Sales channels > Online store > theme’s ‘…’ button > Edit code
- Locate the assets folder and find the main CSS file (styles.css or similar)
- Add the following CSS code at the end of the file:
.video-section__media {
border: 10px solid black;
}
This CSS targets the video section media element and applies a 10-pixel solid black border around it.
Sales channels > Online store > your theme’s ‘…’ button > edit code
On assets folder, look for something like styles.css or theme.css, or something that seems general with .css extension. At the end of it add
.video-section__media {
border: 10px solid black;
}
1 Like