Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
Change size of web explorer bar item
posted

I want to change the size of my web explorer bar item as shown in screenshot, the screenshot is not of web explorer bar, it is screenshot of different menu but i want my web explorer bar looks like this

I want to change the size equal to font as shown in screenshot and when i hover over item it may looks like that it is a link as the 2nd item in screenshot,on hover it must be underline

Parents
No Data
Reply
  • 1320
    Offline posted

    Hello Zeshan,

    After investigating this further, I determined that the height of the container with the webExplorerBar items could be changed by setting the “GroupContentsHeight” property of the ExplorerBarGroup:

    <ig:ExplorerBarGroup Text="items" GroupContentsHeight="200px">

    Or from code behind the following way:

    group = new ExplorerBarGroup();

    group.Text = "Group";

    group.GroupContentsHeight = 200;

    Additionally the color of the group container could be changed from the “igeb_Office2007BlueGroupContents” class.

    Underlining the items on hover could be achieved by adding the following line in the “igeb_Office2007BlueItemHover” class:

    text-decoration-line: underline;

    Please let me know if you need any further information regarding this matter.

    Regards,

    Monika Kirkova,

    Infragistics

Children