show area on print only.

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default show area on print only.

    Hi,
    I have an area on a page which I would only like to show when the page is
    printed, not when viewed on-screen,

    I know I could do something with a print only style sheet...

    but I don't know if creating a whole sheet for just this one element is the
    correct way to do things...

    Anyideas
    ?

    Jams


    Jamesy Guest

  2. Similar Questions and Discussions

    1. Print Selected Area Button
      Heya, I am trying to create a button that users can click on to print a specific text area of the page that I preselect. Does anyone know how to do...
    2. Show Hide area - based on login ...
      OK what I want to do is something I thought was pretty simple, in fact I still think its simple but I am not a programmer, or a PHP man more ASP ...
    3. move print area/page
      I am not sure how to ask or do this so I will simply explain. The template "page" that I work from doesn't have it's corner at 0,0. Is there a way to...
    4. Added Text Area Won't Print
      Using Acrobat v.6.0, a co-worker has the following problem: 1) Opens an existing .pdf file. 2) Uses the line tool to outline a space in the...
    5. Print Selected Area
      The Print Selected Area checkbox is grayed out. Colour and mono. This is new after removing ScanWizard 5 and replacing it with ScanWizard 5.7.6...
  3. #2

    Default Re: show area on print only.

    Why wouldn't it be the correct way? You can always just embed it in the
    head of the page, e.g.,

    <style type="text/css" media="print">
    <!--
    styles....
    -->
    </style>

    Or even include it on the bottom of an existing embedded stylesheet -

    <style type="text/css">
    <!--
    styles...
    @media print
    styles...
    -->
    </style>

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Jamesy" <NOSPAM@patchworkmedia.co.uk> wrote in message
    news:d57m4m$749$1@forums.macromedia.com...
    > Hi,
    > I have an area on a page which I would only like to show when the page is
    > printed, not when viewed on-screen,
    >
    > I know I could do something with a print only style sheet...
    >
    > but I don't know if creating a whole sheet for just this one element is
    > the correct way to do things...
    >
    > Anyideas
    > ?
    >
    > Jams
    >

    Murray *TMM* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139