How to list posts that appear in two categories

I think that all you need is this, from the Codex:

$query = new WP_Query( 
  array( 
    'category__and' => 
    array( 2, 6 ) 
  ) 
);

Where the numbers (2, 6) are your category IDs. Your question does not have enough detail, or enough code, for me to tell you how to implement that inot your page.