Search code examples
coldfusioncommonspot

Print Version CSS for CommonSpot


Hey can any one tell me about how to link print version CSS?? I have created a head and linked the head file as

< link media="print" type="text/css" rel="stylesheet"
href="#request.subsiteCache[1].url#style/print.css">

but I'm unable to get the exact style version for the print as I have mentioned in print.css

Do I need to do anything more apart from this?

I'm using commonspot.

I wrapped it in cfoutput tags


Solution

  • did you wrap your link tag around cfoutput?

    <cfoutput>
        <link media="print" type="text/css" rel="stylesheet" href="#request.subsiteCache[1].url#style/print.css">
    </cfoutput>