I was following this tutorial:
I like everything the same except I want to make the following change:
<section>
<a rel="external" href="#button" id="button"></a>
<span></span>
</section>
to:
<section>
<asp:Button CssClass="button" id="Button3" runat="server" OnClick="Button3_Click" Text=""\uf011;"" />
<span></span>
</section>
When adding buttons and programming them using Visual Studio, everything seems to work fine. However, when I click the button, it doesn't change color as expected. It may be because in the tutorial a button is used as a link, but if I add it with Visual Studio, it's not treated as a link. How can I style the button to achieve the same effect even when adding it through Visual Studio?