To add an outline when users hover on List Item, like this
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;
}
To add an outline when users hover on List Item, like this
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;
}