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>        'title' => 'Show',<br>        'page callback' => 'theme',<br>
        'page arguments' => array('view_user'),<br>        'access callback' => TRUE,<br>        'type' => MENU_CALLBACK,<br><br>/**<br> * Implementation of hook_theme().<br> */<br>
function show_theme() {<br>  return array(<br>    'view_user' => array(<br>      'arguments' => array('view_user' => NULL, 'type' => 'html', 'node' => NULL),<br>
      'template' => 'page-user-view',<br>    ),<br>  );<br>}<br><br>it'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>