HTMLGuyLLC / jAlert

jQuery alert/modal/lightbox plugin
https://htmlguyllc.github.io/jAlert/
MIT License
76 stars 35 forks source link

Can use multiple color fonts in alert #48

Closed SethKitchen closed 6 years ago

SethKitchen commented 6 years ago

I would like to pop a dialog up with a string of

red text, "YOU FAILED TO DO BLAH BLAH"

yellow text, "Im warning you to do blah blah"

green text, "you did this perfectly."

Can you add this enhancement?

HTMLGuyLLC commented 6 years ago

You can do this in your implementation.

Just add CSS to your site like this:

.ja_green .ja_body
{
   color: green;
}

.ja_red .ja_body
{
   color: red;
}
........

Reference jAlert's CSS to find all the theme classes.