Hey Gliders ,
I’ve found a way to change the default “three dots” icon in collections.
Guess what. It is only three steps! Or three dots
- Add the “custom-three-dots” class to your list collection.
- Add the custom CSS below.
- Change the background-image url to anything you want.
/* Custom Three Dots */
.custom-three-dots button[data-testid="menu-button"]:has(svg){
width:64px;
height:64px;
}
.custom-three-dots button[data-testid="menu-button"]:has(svg) > div:has(>svg){
position: relative;
width:64px;
height:64px;
}
.custom-three-dots button[data-testid="menu-button"] div:has(>svg):after {
content: '';
position: absolute;
width: 100%;
height:100%;
background-image: url('image.png');
background-size: contain;
background-repeat: no-repeat;
pointer-events: none;
}
/* END: Custom Three Dots */