Can you change the item height in WebExplorerBar? It is too large: 30 px! (See attached pic.)
I tried changing all the values in ig_explorerbar.css, and tried creating a overridden .igeb_Item style in my aspx page. Neither worked.
Can you make the item height 14px, for instance?
<ig:WebExplorerBar ID="WebExplorerBar1" runat="server" Width="400px">
<Groups>
<ig:ExplorerBarGroup GroupContentsHeight="" Text="My New Group"> <Items>
<ig:ExplorerBarItem Text="1">
</ig:ExplorerBarItem>
<ig:ExplorerBarItem Text="2">
<ig:ExplorerBarItem Text="3">
</Items>
</ig:ExplorerBarGroup>
<ig:ExplorerBarGroup GroupContentsHeight="" Text="Second Group">
<Items>
</Groups>
</ig:WebExplorerBar>
Hi Ray,
I'm glad you solved your issue. If you have any other questions, please feel free to contact me.
Yes, that resolved it! I'm sorry; I must have done something wrong. I thought I had done this, but after doing it again, it worked!
You can change the item height via CSS. In ig_explorerbar.css file, find .igeb_Item class and change the line-height, for example:
.igeb_Item{ background-color:White; line-height: 18px;}
Then for the following classes, change the min-height rule:
.igeb_Item ,.igeb_ItemActive ,.igeb_ItemSelected{ min-height: 20px; _height: 20px;}
Let me know if this helps.
Any replies to this?