Edrol97
Bronze Coder
Hi all,
Wondering how I can solve this. I want a custom cursor on both scrollbar and gallery buttons. I attach the code:
Thanks,
El
Wondering how I can solve this. I want a custom cursor on both scrollbar and gallery buttons. I attach the code:
CSS:
body::-webkit-scrollbar {
width: 1em round;
overflow: scroll;
cursor: url("img/background/cursors/pointer1.png"), pointer !important;
}
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px #1e4cad;
}
body::-webkit-scrollbar-thumb {
background-color: #1e4cad;
outline: 1px solid #1e4cad;
border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover{
cursor: url("img/background/cursors/pointer1.png"), pointer !important;
}
CSS:
.previous_button,
.next_button,
.close_button {
font-family: Arial, Helvetica, sans-serif;
font-size: large;
align-items: center;
font-size: xx-large;
position: absolute;
color: white;
}
.previous_button,
.next_button,
.close_button:hover{
cursor: url("img/background/cursors/pointer1.png"), pointer;}
Thanks,
El