VS 2005
VB.NET
Hi
I recently started using Themes instead of just CSS files following advice in this thread: http://forums.asp.net/thread/1318280.aspx
I now have the opposite problem - if I directly link a CSS file to a page then the styles work but if I put them in the CSS Theme they do not. The relevent styles are:
a:link {text-decoration: none;color: #000066;}
a:visited {text-decoration: none;color: #000066;}
a:hover {text-decoration: none;color: #006699;}
a:active {text-decoration: none;color: #000066;}
I beleive they need to be in this order (http://www.wwwcoder.com/main/parentid/449/site/6249/68/default.aspx)
My unremarkable HTML is
<a href="http://forums.asp.net/default.aspx">formatting not working</a>
and my web.config file reads:
<
pages theme="MyTheme">
All other styles are working just fine.
Does anyone have any idea please?
Many Thanks