Hi, can anyone please assist in adding a text tooltip on hover over menubar item.
I don't know the code at all, can someone please assist in adding the code if it's not to much trouble.
Only really making small changes to certain files, so this would be helpful to give a tooltip of a menu item:
<ignav:UltraWebMenu id="mnu" JavaScriptFilename="" JavaScriptFileNameCommon="" LeafItemImageUrl="" ParentItemImageUrl="" StyleSetName="" runat="server" EnhancedRendering="False" ItemPaddingSubMenus="0" ItemPaddingTop="0" ItemSpacingTop="0" SeparatorClass="" MergeStyles="False"> <ItemStyle CssClass="mnuItem"></ItemStyle> <Levels> <ignav:Level Index="0" LevelCheckBoxes="False"></ignav:Level> <ignav:Level Index="1" LevelCheckBoxes="False"></ignav:Level> </Levels> <Items> <ignav:Item TargetUrl="Home.aspx" TagString="" HoverClass="mnuMainHover" TargetFrame="" CssClass="mnuMain" Text="Home"> </ignav:Item>
</Items>
</ignav:UltraWebMenu>
Hi There,
You can simply add ToolTip attribute to the Item declaration, like that: <ignav:Item ToolTip="Navigate to Home" ... > </ignav:Item>
Hope this helps!
Great Stuff :)
Thank You