Hi sendgo,
I wanted to remove that too, so I just deleted from the theme file style.css the CSS code below:
.blockpage-cursor {
border-radius: 50%;
background: #08b786;
width: 24px;
height: 24px;
pointer-events: none;
position: absolute;
z-index: 999;
transition: all 2s ease-out;
transition-property: border-radius;
animation: blockpageAnimCursor 0.6s infinite alternate;
}
.blockpage-cursor.focus {
border-radius: 50%;
transition: all 0.6s ease-out;
animation: hoverCursor 0.6s;
opacity: 0;
}
@keyframes blockpageAnimCursor {
from {
transform: scale(1);
}
to {
transform: scale(0.5);
}
}
@keyframes hoverCursor {
from {
transform: scale(1);
}
to {
transform: scale(2.5);
}
}
You can delete the code directly in that file or you can use GUI theme editor under /wp-admin/theme-editor.php. Surely make a backup of the code/file before you do any changes.
Thread Starter
sendgo
(@sendgo)
Hi @tomasjenikovsky,
Thanks for your reply and the suggested solution. I’ll try that out. Much thanks.
Thread Starter
sendgo
(@sendgo)
Hi @tomasjenikovsky,
I deleted the code as you suggested and it worked perfectly. Thanks a lot.