Need help with Cursor

Good morning:)
How can I prevent the Cusor from automatically switching to an input field?

Jens

In your page properties put this in the HTML Head section:

<style>
input:hover { cursor:default; }
</style>

Its a CSS style saying when you are hovering over an input, use the default cursor. See this link for other cursor states you can set.

This topic was automatically closed after 70 days. New replies are no longer allowed.