(Squarespace) Add an Outline on Hover List Item

To add an outline when users hover on List Item, like this

image

You can use this code to Website > Website Tools > Custom CSS.

li.list-item {
    border: 1px solid transparent;
}
li.list-item:hover {
    border-color: #000;
}
1 Like