I am using the following to run some expanding/collapsing divs
<div class="FAQ">
<a href="#hide1" class="hide" id="hide1">+</a>
<a href="#show1" class="show" id="show1">-</a>
<div class="question"> Question Question Question Question Question Question Question Question Question Question Question? </div>
<div class="list">
<p>Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer Answer </p>
</div>
</div>
CSS
/* source: http://www.ehow.com/how_12214447_make-collapsing-lists-java.html */
.FAQ {
vertical-align: top;
height:auto !important;
}
.list {
display:none;
height:auto;
margin:0;
float: left;
}
.show {
display: none;
}
.hide:target + .show {
display: inline;
}
.hide:target {
display: none;
}
.hide:target ~ .list {
display:inline;
}
as found (and continued) here Pure CSS collapse/expand div
My issue is that I can't get my expanded div to print either using Ctrl+p or using a function printpage script.
I am new to this kind of thing and I feel the answer must be staring me in the face. Is there something I can add to my print.css file to force it to at least ignore the funcitonality of the class FAQ and print all that is hidden if I can't get it to print just the expanded div.
Thanks in advance.