Shyju
Shyju

Reputation: 218752

ASP.NET: Themes : Associating a CSS file out side App_Theme folder for Skin/Theme

Is there anyway i can mention which CSS file should be attached to my Page automatically when running A Page with ASP.NET Themes /Skins ? I want to associate my own CSS which resides in a folder other than the APP_Themes Folder to the Page

Upvotes: 0

Views: 355

Answers (1)

IrishChieftain
IrishChieftain

Reputation: 15253

Try this:

<link href="styles/common/mystyle.css" rel="stylesheet" 
    type="text/css" media="screen, projection" />

Upvotes: 1

Related Questions