how to make permissions messages normal case instead of uppercase?

The error messages are in UPPERCASE. How can I make them normal case.

For example, "DOESN'T ALLOW YOU TO" should be "Doesn't allow you to"

  • 292
  • More
Replies (1)
    • Looking at the una styling, it shows they are applying the text-transform values to transform from lowercase to uppercase in class bx-msg-box.

      image_transcoder.php?o=sys_images_editor&h=98&dpx=2&t=1643580016

      You can try adding an Injection in Designer box containing the text-transform lowercase style:

      Designer > Injections

      Add something like this:

      <style>
       .bx-msg-box {
        text-transform: lowercase;
        text-transform: capitalize;
       }
      style>
      
      Login or Join to comment.