Skip to main content
Participating Frequently
January 28, 2016
Answered

Why do Captivate 8 text entry boxes display a very large letter X when a course is published in html5?

  • January 28, 2016
  • 1 reply
  • 332 views

I have found a couple of other people that are experiencing this issue but I can't find a solutions.

    This topic has been closed for replies.
    Correct answer TLCMediaDesign

    If it's html5 you can add this to the CSS file:

    ::-ms-clear {

          display: none;

      }

    1 reply

    TLCMediaDesign
    TLCMediaDesignCorrect answer
    Inspiring
    January 28, 2016

    If it's html5 you can add this to the CSS file:

    ::-ms-clear {

          display: none;

      }

    Participating Frequently
    January 29, 2016

    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?

    TLCMediaDesign
    Inspiring
    January 29, 2016

    You can add some padding to the bottom:

    #Text_Entry_Box_1_inputField{

    padding:0 0 5px 0;

    }