I have looked thru the support site and doc's and am unable to find anything on how to use CSS on the WebDropdown. Do you have some examples or a roadmap of the elements or classes ?
Thanks
Thanks for all the help. I found the problem. I had a problem in the CSS file. Once I fixed it, it worked like it should. Is there a breakdown of what css class does what ?
Thanks Angel, I will give it a try and let you know.
Hi dmhsas,
You can take a look at the attached WebSite project. I have a master page, where i import your CSS, then i have a Default2.aspx, which uses the master page, and the new CSS declarations are correctly applied to the WebDropDown.
Thanks,
Angel
its in the master page as..
<
link href="DefaultScreens.css" rel="stylesheet" type="text/css" />
I have attached the Css file.
Thanks for the help.
You don't need to set any property on the control, so that your CSS file would be used, if you use the same class names that are used in the control. How is your CSS file registered ?
For example, putting this in the <head> of the ASPX page works fine :
<style type="text/css">
.igdd_Control {
border-width:2px;
border-color:Black;
border-style:solid;
}
</style>
You can also load an external stylesheet (if i have a WebSite project, and have it placed in the WebSite root folder, the declaration will be this ):
<link rel="Stylesheet" type="text/css" href="MyCustomCss.css" />
If it still doesn't work for you, you can attach a sample project demonstrating the behavior and I will take a look. You can also contact Infragistics Development Support for further in-depth investigation of the issue.