How to remove the watermark from Amazing Slider JQuery lib.

Please find the latest version 6.7 article Here

when I saw it, I said wow, it is awesome, but after using it, there was a watermark on the images,
which make everything looks bad. so i told my self I had to share this with the world. it cost $249

 inside sliderengine folder open amazingslider.js file with any editor and search for this 

text-decoration:none;font:12px Arial,Tahoma,Helvetica,sans-serif;color:#333

 when you find it search for this part

this.options.fvm

on the second time you find it, replace it with '' 
and then save your file. and then reload your html page. there will be no watermark

update :
some of the people are complaining that, this trick is not working for them,
if you already found this part


text-decoration:none;font:12px Arial,Tahoma,Helvetica,sans-serif;color:#333
change it to

text-decoration:none;font:12px Arial,Tahoma,Helvetica,sans-serif;color:#333;display:none;




update for version 5.3:
search for

visibility:visible !important;z-index:999999 !important;



you should locate one, then before this look for wposcss change the display to none

update for version 6.3:
first you need to search for this pattern 
{style:mkdiv.attr("style")+"display:block!important;visibility:visible!important;font-size:12px!important;"}
and then change it with this one  
{style:mkdiv.attr("style")+""}

then search for this pattern 
from the beginning of the js file 
display:block !important;position:absolute;top:6px;left:6px;visibility:visible !important;z-index:999999
and change it to this 
display:none !important;position:absolute;top:6px;left:6px;visibility:visible !important;z-index:999999

save the file and run the html screen 
it should work :) 

filter attribute that checks whether current connection is secured

using APS.net Core to mark all website pages working with https protocol we will do this using IAuthorizationFilter. and here is an exampl...