views:

327

answers:

0

Hello, I'm currently working with some god awful CRM system. Essentially each page is made up of two FRAMESET elements each containing a bunch of frames. I need to create a print style sheet for a particular page. I'm having trouble getting everything to fit onto one page. So I've hidden some menu elements using

elementName {
 display:none;
 visibility: collapse;
}

This of works - but I can't seem to get rid of frames this way. Unfortunately left hand side menus are in a FRAMESET of their own so it seems I can hide the contents of the menu but I can't position:absolute; left 0; top 0; the printable content over the top of them. This means I'm effectively getting a big margin on the left hand side of printable page.

Has anybody got any advice on how to approach this?

Thanks in advance!