I am using noty
how can I display messages right to left or change text align in 'noty_message' class
thanks
I am using noty
how can I display messages right to left or change text align in 'noty_message' class
thanks
Copyright © 2021 Jogjafile Inc.
You can do that by having a customized theme.
This is how to create your own theme for Noty:
default.js
orrelax.js
orbootstrap.js
undernoty/themes/
. Name the duplicate whatever you want and include the file in your HTML page.defaultTheme
" and replace it with your own theme name. Do this on the whole code.this.$message.css({fontSize: '11px', textAlign: 'left'});
and change "left" to "right".noty({text: 'Successful action', layout: 'topRight', type: 'success', theme: 'myThemeName'});
I have tested it for version
2.2.7
and it worked well.