hello:<br><br>i have a question. I need to make a page in my module with out a garland theme, to show with a ligthbox module.<br><br>I use:<br><br>        &#39;title&#39; =&gt; &#39;Show&#39;,<br>        &#39;page callback&#39; =&gt; &#39;theme&#39;,<br>
        &#39;page arguments&#39; =&gt; array(&#39;view_user&#39;),<br>        &#39;access callback&#39; =&gt; TRUE,<br>        &#39;type&#39; =&gt; MENU_CALLBACK,<br><br>/**<br> * Implementation of hook_theme().<br> */<br>
function show_theme() {<br>  return array(<br>    &#39;view_user&#39; =&gt; array(<br>      &#39;arguments&#39; =&gt; array(&#39;view_user&#39; =&gt; NULL, &#39;type&#39; =&gt; &#39;html&#39;, &#39;node&#39; =&gt; NULL),<br>
      &#39;template&#39; =&gt; &#39;page-user-view&#39;,<br>    ),<br>  );<br>}<br><br>it&#39;s work fine, but load with a garland theme. and i need white page, without theme, because i load this page with lightbox2 module.<br>
<br>what can i do ?<br><br>thanks.<br>