Asp.net Master Pages...
-
How Can i add color to my content page?
-
How Can i add color to my content page?
You might want to try giving the gridview a cssClass, then in the stylesheet Code: .SomeGridView a {color:#000000;} .SomeGridView a:hover {color: #ff00000;}
SSK. Anyone who says sunshine brings happiness has never danced in the rain.
-
How Can i add color to my content page?
You can set the style to the element which is available in content page. Normally, there is at least one DIV in content page. so, you can set the style to this div. Hope it helps.
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)
-
How Can i add color to my content page?
The content page itself is not rendered as an html element, so you can't set any style on the content page at all. You have to set the color on an element outside the content tag (in the master page) or inside the content page.
Experience is the sum of all the mistakes you have done.