popAlert_show($title,$msg,$confirm,$cancel,$icon); popAlert_btnSingle(); */ ?>

but below the 'Scripts' from hrefing the 'jquery' library and above the 'custom script'. -------------------------------------------------- Use the following code inside 'Scripts (custom)' | to show alert // show pop-alert $title = ''; $msg = ''; $confirm = ''; $cancel = ''; $icon = 0; popAlert_show($title,$msg,$confirm,$cancel,$icon); -------------------------------------------------- Use the following code inside 'Scripts (custom)' before 'popAlert_show($title,$msg,$confirm,$cancel,$icon);' | to alight to "Left" $('alertTitle').removeClass('popMsgEl_toCenter'); // make 'Title' to left $('alertmsg').removeClass('popMsgEl_toCenter'); // make 'Message' to left -------------------------------------------------- Use the following code inside 'Scripts (custom)' before 'popAlert_show($title,$msg,$confirm,$cancel,$icon);' | to show "only 1 button" popAlert_btnSingle(); -------------------------------------------------- Use the following code inside 'Scripts (custom)' | to re-design button "style" $('#popBtn_confirm').css({'color': 'red'}); $('#popBtn_confirm').hover(function(){ $(this).css({'background-color': 'red','color': 'white'}); },function(){ $(this).css({'background-color': '','color': 'red'}); }); -------------------------------------------------- Example: */ ?>