Hi, I have the following html button:
I need to hide it.
So i tried adding the following to my project's css:
Its not working.
How can i hide this button ?
Thanks in advance.
<input type="button" id="SubmitEnviado" runat="server" style="display: none !important" onserverclick="SubmitEnviado_Click" />I need to hide it.
So i tried adding the following to my project's css:
a.rfdSkinnedButton, #ctl00_ContentPlaceMaster_SubmitEnviado, #ctl00$ContentPlaceMaster$SubmitEnviado, #ctl00_ContentPlaceMaster_SubmitEnviado{ display: none !important;}Its not working.
How can i hide this button ?
Thanks in advance.