Is it possible to change the font on the information message of the DataTable Editor?

Is it possible to change the font on the information message of the DataTable Editor?

Josh_BrooksJosh_Brooks Posts: 11Questions: 4Answers: 0

Is there a way to change the style on the DataTable Editor info message?

<div class="DTE_Form_Info" data-dte-e="form_info" style="display: block;">
Info Message
</div>

editor.message("Info Message");

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,744Questions: 1Answers: 10,111 Site admin
    Answer ✓

    Sure - use the CSS font property.

    div.DTE_Form_Info {
      font: ...
    }
    

    Allan

  • Josh_BrooksJosh_Brooks Posts: 11Questions: 4Answers: 0

    I was able to do a simple

    $('.DTE_Form_Info').css("font-size","0.8em");
    

    Thanks!

This discussion has been closed.