Thanks guys,
By the sounds of it, it seems like your designers dont get broken with css which gives me some hope of fixing this. I thought it a bit odd that microsoft would go to all the trouble of creating an excellent designer that just breaks with css and their main theme feature.
Did you set your default theme in the web.config?
http://msdn2.microsoft.com/en-us/library/0yy5hxdk.aspx
Yes, did that. Like i said, the theme does get applied in my browsers so obviously the theme is set in config but it doesnt get recognized by the designer.
I have a Theme folder with a stylesheet.css
It gets applied in config like so:
<pages theme="Main Theme">
Main Theme is the name of a folder inside App_Themes
The stylesheet.css contents are below:
body
{
text-align: center;
}
div#main
{
margin: 0 auto;
width: 727px;text-align: left;
}
.line
{
width: 160px;
height: 21px;left: 260px;
position: relative;top: -20px;
}
.home
{
width: 59px;
height: 17px;position: relative;
left: 105px;top: -27px;
}
.contact
{
position:relative;
left:116px;top:-27px;
width:75px;height:17px;
}
This get applied to the master page for example, the .contact class gets applied to an <a>
<
a href="Default.aspx" class="contact">
<img border="0" src="images/contact.gif" alt="Contact" /></a>
Any help would be greatly appreciated.
Thanks :)