HTMLGuyLLC / jAlert

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

custom class on X button #7

Closed mandricmihai closed 9 years ago

mandricmihai commented 9 years ago

How to add an custom class on X button depending on the alert type?You should add that is good for css customization

HTMLGuyLLC commented 9 years ago

You could add a class to the alert itself and use CSS to navigate down.

Example:

$.jAlert({
'class':'custom1'
});
.custom1 .ja_close
{
//custom css
}