If you're having problems getting XMod Pro's inline editor to display correctly (i.e. inline and not on another page) under Internet Explorer (IE) but it works fine with Firefox, check your site's DOCTYPE. The editor will not work correctly with the HTML 4 (Legacy) DOCTYPE, a default for may older DNN sites or those that have been upgraded from earlier versions. To solve the problem, you have two choices: 1) Just use Firefox for your editing of forms and templates. This is not an issue that affects your end users. 2) Change your DOCTYPE DNN 5: Change your "Skin Fallback Type". If your skin doesn't define a DOCTYPE (see below) DNN will supply the DOCTYPE you select. You can find this on the Host Settings page. You should change your XHTML Transitional or Strict. The HTML 4 Legacy option will not work. IMPORTANT: If your skin is older or your nav menu is older, they may have some layout issues after the change. Changing your skin's DOCTYPE: In DNN 4.4+, look to see if your skin has defined a DOCTYPE. If so, you'll find a file named similar to: YourSkinNameHere.doctype.xml in your skin's folder. Edit that to change your DOCTYPE. While XHTML 1.0 is generally preferred, you can use HTML 4.01 Transitional (an option DNN5's fallback doesn't provide) but you must be sure to supply the DTD URL. Here's an example: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/loose.dtd"> Best, Kelly |