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
945
Trying to change height of the WebDropDown.
posted

Hello,

I have a WebDropDown (11.2.20112.2055) in a Master Page. The WebDropDown has the "IG" StyleSet attached. I tried to change the Height of the control by changing the Height & Width of ".igdd_IGDropDownButton" from 22x22 pixels to 16x16 pixels. When i try to load the page in Visual Studio, the control is still set to the original height (button is still 22x22 pixels). When I click on the dropdown button and then click somewhere else on the screen, the control shrinks to to the hieght i wanted orignally but when i reload the page it jumps back to its original size.  I even tried to do the following and it still didn't work:

.igdd_IGDropDownButton
{
 width: 15px !important;
 height: 15px !important;
 z-index: 9999;
}

How do i set the height of the control so that it works properly?