Hi,
Please I need help to disable mouse hover effect in the text area box. Where do I do the settings?
I dont want the cursor to show when the user click on the textbox area.
e.g <span style="cursor:not-allowed">not-allowed</span><br>
Thanks
Thanks Bob, Please I am a novice with CSS.
What I want to do is that, I tried to display my data from my database into the text boxes of different fields. After the displaying the data, I want the textbox area to disable mouse hover or disable mouse cursor so that it wont allow the user to click on it except to see the data like a Label Text.
Or Is there another way to display data from my database in form of a Label Text.
Thanks
Hi davidlee7621,
In theory the easiest way is to set the textarea to 'readonly' or 'disabled' but ChronoForms v4 doesn't support that very easily (there is a FAQ if you want to try).
It's probably simpler to use a Custom Element element in your form and add <div>{input_name}</div> which should display the content as 'ordinary' text.
Bob
PS CFv5 does handle the attributes OK.
Thank you so much Bob...
The Custom Element code work perfectly fine...