how can i move this following user login with site action menu to header of custom master page in sharepoint 2013 ?
following is header of my custom master page HTML tags; i want to put above user login in between <!-- User Name --> <!-- End: User Name -->
so how can i accomplish this? how can i hide top ribbon bar after setting up user login with site action menu in header of custom master page?
<!-- header --><div id="Header" style="background: #16486D">
<table style="background: #16486D; padding- padding-" class="master">
<tr>
<td>
<a href="/Pages/Home.aspx">
<img src="/Style%20Library/Images/pin.png" width="350px" height="85px" class="style1" />
</a>
</td>
<td style="padding->
<table>
<tr>
<td>
<!-- User Name -->
????
<!-- End: User Name -->
</td>
</tr>
<tr>
<td>
<!--SPM:<asp:ContentPlaceHolder id="PlaceHolderSearchArea" runat="server">-->
<div id="searchInputBox">
<!--SPM:<SharePoint:DelegateControl runat="server" ControlId="SmallSearchInputBox"/>-->
<!--PS: Start of READ-ONLY PREVIEW (do not modify)--><div class="ms-webpart-chrome"><div WebPartID="00000000-0000-0000-0000-000000000000" HasPers="true" id="WebPart" width="100%" class="ms-WPBody noindex " OnlyForMePart="true" allowDelete="false" style=""><div componentid="ctl00_SmallSearchInputBox1_csr" id="ctl00_SmallSearchInputBox1_csr"><div id="SearchBox" name="Control"><div class="ms-srch-sb ms-srch-sb-border" id="ctl00_SmallSearchInputBox1_csr_sboxdiv"><input type="text" value="Search This Site..." maxlength="2048" accessKey="S" title="Search This Site..." id="ctl00_SmallSearchInputBox1_csr_sbox" autocomplete="off" autocorrect="off" class="ms-srch-sb-prompt ms-helperText" /><a title="Search" class="ms-srch-sb-searchLink" id="ctl00_SmallSearchInputBox1_csr_SearchLink" href="javascript: {}"><img src="" class="ms-srch-sb-searchImg" id="searchImg" alt="Search" /></a><div class="ms-qSuggest-container ms-shadow" id="AutoCompContainer"><div id="ctl00_SmallSearchInputBox1_csr_AutoCompList"></div></div></div></div></div><div id="ctl00_SmallSearchInputBox1"></div><div class="ms-clear"></div></div></div><!--PE: End of READ-ONLY PREVIEW-->
</div>
<!--SPM:</asp:ContentPlaceHolder>-->
</td>
</tr>
</table>
</td>
<!--end of new site action menu-->
</tr>
</table>
</div>
<!-- end of Header -->
Thanks,
DK