How to show help text in edit mode to editors in Epi

  • Page Owner: Not Set
  • Last Reviewed: 2019-03-24

It is pretty simple actually. you just need to add the following css run and add it to the modules.config.

.Sleek .dijitTabPaneWrapper .epi-form-container__section__row label[title]:after {
   content: attr(title);
   display: block;
   font-size: 9px;
   font-style: italic;
   margin: 0.3em 0 0 0;
   color: #000;
}

Below is a photo. enter image description here

Comments

  • @JoshuaFolkerts Can you post your response as an answer?  Otherwise this question shows up in the list as unanswered.

Additional Posts

.Sleek .dijitTabPaneWrapper .epi-form-container__section__row label[title]:after {
   content: attr(title);
   display: block;
   font-size: 9px;
   font-style: italic;
   margin: 0.3em 0 0 0;
   color: #000;
}