Hi,
I've tried to do this:
div.Feedback_AjaxWait {font-size: 16px;position: fixed;bottom: 50%;right: 50%;margin-left: -30px;background-color: #000000;background-image\: url(img/contacts.png);padding: 20px;z-index: 10000;border-top-left-radius: 1px;border: 0px solid orange;}
but I want all the background to be unclickable while it's Loading
can you help me please?
Thanks
-Daryl
Hello Daryl,You can use pointer-events to disable events like click.Platform add a class .Feedback_AjaxWait_CursorProgress when loading is visible.Try this:body.Feedback_AjaxWait_CursorProgress{pointer-events: none;display:none;}
David Marques wrote:
hey, thanks man!
I'll try this.