CSS in CFDOCUMENT Footer

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default CSS in CFDOCUMENT Footer

    After figuring out that the style shhet has to be included with in the
    CFDOCUMENT itself (doesn't inherit from the Application.cfm file), I am now
    also noticing a problem with the footer. It doesn't support the styles that are
    used on the rest of the document. It looks like I have to also specify the
    style information within the cfdocumentitem. Is this a bug? I can handle
    including a report.css file to standardize document styles, but being required
    to duplicate these styles within the footer is going to create undesirable
    overhead.

    jerm Guest

  2. Similar Questions and Discussions

    1. Add footer through IAC?
      Hi I am writing C# .NET code that uses the Acrobat 7 interapplication communication SDK. Is it possible to add a standard footer to a document in...
    2. Footer DIV question...
      I have 3 divs: left, center, right. I also have a footer div: footer. Which clears:both. I would like to create a container Div to put some...
    3. Footer Help
      Hello, I need to some help - I have a website that is being hosted through a company that likes to use its templates - well we decided that we...
    4. cfdocument with header & footer
      Well, I got it working using CFHTTP, throwing in a couple of comment tags I can check for to filter out the header and footer, but it's really silly...
    5. footer in OSCommerce
      Hi there I am not sure if this is php, java or html related. But is there a simple way to place some text in the footer of a web page in a php...
  3. #2

    Default Re: CSS in CFDOCUMENT Footer

    Unfortunately, this is how it works as of now. We would have someone look
    into the same.

    Regards,
    Vamsee


    "jerm" <webforumsuser@macromedia.com> wrote in message
    news:d0878p$jjv$1@forums.macromedia.com...
    > After figuring out that the style shhet has to be included with in the
    > CFDOCUMENT itself (doesn't inherit from the Application.cfm file), I am
    > now
    > also noticing a problem with the footer. It doesn't support the styles
    > that are
    > used on the rest of the document. It looks like I have to also specify the
    > style information within the cfdocumentitem. Is this a bug? I can handle
    > including a report.css file to standardize document styles, but being
    > required
    > to duplicate these styles within the footer is going to create undesirable
    > overhead.
    >

    Vamsee Krishna Guest

  4. #3

    Default Re: CSS in CFDOCUMENT Footer

    I know that when my styles weren't working in the header, I had to also
    reference the styles there (for example):
    (my coding here is off the top of my head, forgive me if I make a typo)


    <cfdocument>
    <cfdocumentsection>
    ***do your xml import here***
    <cfdocumentitem header>
    ***you have to do an additonal xml import for header items***
    </cfdocumentitem>
    rest of code
    </cfdocumentsection>
    etc....

    sorry I don't remember all the code and am too lazy to get it right, but you
    get the general idea... maybe this is the issue with the footer as well?

    Nefiga 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