Well dude...I'm not sure if you tried this or not, but here's how I deal with print stylesheets:
1) I start with a blank print.css file. Why? Because a blank print.css file generates a result on a page similar to that when CSS is disabled or not included (in other words, just plain ol' black Times New Roman text on a white background, unless inline styles are used.)
2) I create CSS for those elements that I want removed. For example, you want images removed.
Code:
img {
display: none;
}
This will remove any image from the print output. It'll be as if it were never there in the first place.
I'd do something similar to any elements I'd want removed. e.g.
Code:
div#banner-ad, div.screen-only, div#main-menu, div#left-side-menu {
display: none;
}
Finally, I'd add in my CSS for the paging and margins and fonts and stuff.
In other words, it's best to approach print css as if you were doing it on screen. Start blank, add your elements, check, add more elements, check, fix elements, check, add more elements, and so on and so on until you've got it right.
If you're still stuck, link to the page. There are plenty of CSS geeks in here (including the smartest CSS guru type you'll ever meet, LadyNRed) who can help you out.
A little side note here, too: while your posts do pertain to databases in the sense that you're drawing info from a database, the primary topic of the post often pertains to something else (e.g. this pertains to CSS more than anything, and it looks like your other post pertains to PHP even though I know very little about PHP.) You'll find a lot more success in posting to the forum that best fits your problem.
You're asking good questions, don't get me wrong (they **** sure beat the "i m seo expert, plz to tell me how seo my site?" or "I got screwed over 38 times on the Interweb, but the 39th time will be different, I swear, thanks to a money-making guru no one has ever heard of!" posts); you just need to work a little more on targeting the right forum, that's all.
Hey mods, can you move this one over to CSS so Ken can get some more help?