October 2010
Intermediate to advanced
1920 pages
73h 55m
English
As an alternative to Skins, you can use a CSS file to control the appearance of both the HTML elements and ASP.NET controls contained in a page. If you add a CSS file to a Theme folder, the CSS is automatically applied to every page to which the Theme is applied.
For example, the CSS in Listing 6.13 contains style rules applied to several different HTML elements in a page.
Listing 6.13. App_Themes\StyleTheme\SimpleStyle.css

If you add the SimpleStyle.css file to a Theme named StyleTheme (a folder named StyleTheme in the App_Themes folder), the Cascading Style Sheet is applied automatically to the page ...