If you're importing XML via AJAX then there are only a few key things you need to do...
1.) The parent-most element needs an XML namespace...
<div id="ajax_search_result1" xmlns="http://www.w3.org/1999/xhtml">
2.) Use W3C standard methods (appendChild, importNode, responseXML) and NOT proprietary Microsoft methods (innerHTML, responseText) or your application will be treated like notepad text instead of an actual application. Here is roughly what the code looks like...
if (window.XMLHttpRequest) {var xmlhttp = new XMLHttpRequest();}
else if (window.ActiveXObject) {try {xmlhttp = new ActiveXObject('Msxml2.XMLHTTP')} catch (e) {try{xmlhttp = new ActiveXObject('Microsoft.XMLHTTP')} catch (e){}}}
xmlhttp.open('GET',url,true);
xmlhttp.send(null);
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState=='4')
{
var xmlDoc=xmlhttp.responseXML;
document.importNode(xmlDoc.getElementsByTagName('div')[0],true),id_container_obj);
}
By using the correct code you'll have no problem styling imported XHTML. For a live demo visit my site in my profile and then at the top right click on site options.