I am wanting to make all existing boarders in the whole website .5px instead of 1px
Here is a link to the site:
I am wanting to make all existing boarders in the whole website .5px instead of 1px
Here is a link to the site:
Modify your image_fill class css as
.image__fill {
display: block;
position: relative;
overflow: hidden;
border:5px solid #000 !important;
}
.collection-item {
border-top: black solid 0.1px!important;
border-left: black solid 0.1px!important;
border-bottom: black solid 0.1px!important;
}
Add this code in the bottom of custom.css file.