User283571144 posted
Hi RateFor,
Could you please post the details codes about your asp:Menu control make up?
I guess you may directly add the text by using MenuItem's property. If you want to put some padding between the image and text, I suggest you could consider using CSS. You could add the margin-right stype for the menu's image item.
Detials, you could refer to below codes:
<style type="text/css">
#Menu1 img {
margin-right:100px;
}
</style>
<div>
<asp:Menu ID="Menu1" runat="server" ItemWrap="true" Orientation="Horizontal" StaticEnableDefaultPopOutImage="true" DynamicEnableDefaultPopOutImage="true">
<Items>
<asp:MenuItem ImageUrl="~/image/Jong Suk li.jpg" Text="Jong Suk li"></asp:MenuItem>
</Items>
</asp:Menu>
</div>
Result:

Best Regards,
Brando