This is a migrated thread and some comments may be shown as answers.

Styling ASP.NET Controls

1 Answer 45 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
mvbaffa
Top achievements
Rank 1
mvbaffa asked on 22 May 2009, 05:16 PM
Hi,

I need to set the style of ASP.NET and HTML controls in accordance with Telerik Skins. I need to sert the styles of controls like <asp:panel> and <div>, to conform its appearance with Telerik Skins.

How can I do that. How can I set the style of a <div> or asp:panel so that they can be compatible visually with Telerik Skins ???

Thanks in advance

1 Answer, 1 is accepted

Sort by
0
Paul
Telerik team
answered on 25 May 2009, 02:08 PM
Hello mvbaffa,

You can style your DIVs by directly applying style, i.e.

<div style="...; ...; ...">  
    ....  
</div> 

or by setting the class property of the div to point to a specific CSS class:

<div class="myCssStyle">  
    ....  
</div> 


Sincerely yours,
Paul
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
General Discussions
Asked by
mvbaffa
Top achievements
Rank 1
Answers by
Paul
Telerik team
Share this question
or