Copy link to clipboard
Copied
I have found a couple of other people that are experiencing this issue but I can't find a solutions.
If it's html5 you can add this to the CSS file:
::-ms-clear {
display: none;
}
Copy link to clipboard
Copied
If it's html5 you can add this to the CSS file:
::-ms-clear {
display: none;
}
Copy link to clipboard
Copied
I have another similar issue with the text entry box that only shows in the html5 version of my course.
I have default text in the text entry box that says "Type here ...".
In the Flash version of the course the default text is vertically aligned to the top of the text entry box, but in html5 the default text is vertically aligned to the middle of the text entry box.
Does anyone know how to make the default text in the html5 version vertically align to the top of the text entry box?
Copy link to clipboard
Copied
You can add some padding to the bottom:
#Text_Entry_Box_1_inputField{
padding:0 0 5px 0;
}