How to create an inner border on an image banner using dawn theme?

hey,

how do I create a inner border on a image banner like this -

I am currently using dawn theme

thanks

1 Like

Hi @itay1104

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

You can create inner border using css outline property and then move the outline inside the image by giving it negative value like this :

div{
   outline: 10px solid white;
   outline-offset: -10px;
 }

Something like this?

.banner__box {
        box-shadow: 0 0 0 1px white inset !important;
      }

doesnt work on mobile view

hey,

puresilver.co.il

where should i input this?

We will need to make it responsive on mobile view , so add the following code :

@media (max-width:600px){
 div{
     outline: 10px solid white;
   outline-offset: -50px;
  }

}

now it doesnt work on mobile and computer, i tried playing around with it, it seems the first line messes it up.

url if it helps - puresilver.co.il

thank you