Here's something I was writing up as a future tip, CopyWolf...
Now that Internet Explorer 9 supports border-radius, we have the option of applying it to tables, table cells, divs, images, etc. in XSitePro. However, the default DOCTYPE in XSitePro renders your site in "Quirks Mode" in the browsers. Default XSitePro DOCTYPE:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
Whereas Internet Explorer 9 requires "Standards Mode" to render border-radius. Here's the most basic DOCTYPE that supports "Standards Mode":
Code:
<!DOCTYPE html>
But there are caveats!
1. XSitePro support does not like you adding a DOCTYPE which supersedes the one that comes with XSitePro. I say supersedes, not overwrites, because you can't overwrite the default DOCTYPE. When you add a DOCTYPE to Other > Global Scripts > "Before anything else in the file," your DOCTYPE will appear BEFORE the default one (and thus it will be the one the browsers use), however, the default DOCTYPE is still there (not good practice). So, do this at your own risk!
2. Because your site will now be rendered in "Standards Mode," some things in XSitePro may no longer work the way you are used to them working. So, test your site well and check it in all browsers.