The flyout is obviously a styled Spry Accordion box... the source 
confirms that. It is one unbreakable unit... thus you won't get what you want 
by using it. Big block, no breakables.

        If you are OK with Javascript, you might want to check out masking and 
unmasking content by using java to assign "display: none;" and "display: 
block:" attributes to various code... eg.

<HTML>
<HEAD>
        - assorted head stuff here -

<script type="text/javascript" language="javascript">
function toggleShowMore(elName) {
        var theElement = document.getElementById(elName);
        if (theElement) {
                if (theElement.style.display == "none") {
                        theElement.style.display = "inline";
                } else {
                        theElement.style.display = "none";
                }
        }
}
</script>

</HEAD>
<BODY>

<a href="#" onclick="toggleShowMore('q1'); return false;" 
style="font-weight:bold;">Content 1</a><br />
<span style="display:none;" id="q1">
        - Your content #1 here
</span>

<a href="#" onclick="toggleShowMore('q2'); return false;" 
style="font-weight:bold;">Content 2</a><br />
<span style="display:none;" id="q2">
        - Your content #2 here
</span>

</body>
</html>

*********** REPLY SEPARATOR  ***********

On 26/05/2009 at 11:24 a.m. Seona Bellamy wrote:

>Hi guys,
>
>I've inherited a site with a problem. If you have a page with more content
>than will fit on one printed page, it creates all of these strange page
>breaks when you try to print. To see what I mean, have a look at
>http://www.superconcepts.com.au/faqs, expand the option "What are the
>advantages of managing my own fund?" and have a look at your browser's
>print
>preview.
>
>I've tried everything I can think of, including scrapping the stupidly
>complicated print stylesheet and seeing what would happen if it wasn't
>there. Sadly, the same problem occurs. So it's obviously being caused by
>something in the basic stylesheet/layout and will need to be overwritten
>somehow in the print stylesheet, but I can't figure out what I need to
>overwrite.
>
>Has anyone encountered this problem before? Does anyone know of a fix for
>this, or can point me at some useful resources to help me understand what
>is happening?



---
Karl
Teknofile Services
www.teknofile.co.nz

 

Please consider the environment before printing this email.

______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to