Hello,
As you may know in Asp.net the page has a form that surrounds the content on the master page.
Such as:
Begin MasterPage:
<form id="masterform" runat="server">
Content Page:
<form action="search.html" method="get">
<input type="text" name="q" class="form-control" value="" placeholder="Type & Hit Enter..">
</form>
End Master Page:
</form>
What is the best way to change the forms into divs or something else so it doesn't break the theme?
