Howdy,

I solved the problem I was having with the style sheet not rendering for
pages called with SES links. It seems the placement of the stylesheet link
in the <head> is important.

Changing this:

<head>
        <title><cfoutput>#PageTitle#</cfoutput></title>
        [meta tag stuff snipped for brevity]
        <link rel="stylesheet" type="text/css" href="style/airtight.css">
        <CFIF IsDefined("variables.baseHref")>
                <cfoutput><base href="#variables.baseHref#"></cfoutput>
        </CFIF>
</head>

to this:

<head>
        <title><cfoutput>#PageTitle#</cfoutput></title>
        [meta tag stuff snipped for brevity]
        <CFIF IsDefined("variables.baseHref")>
                <cfoutput><base href="#variables.baseHref#"></cfoutput>
        </CFIF>
        <link rel="stylesheet" type="text/css" href="style/airtight.css">
</head>

worked. So, moving the stylesheet link BELOW the <base href> tag declaration
fixed the problem.

Hope this helps anyone else who might have this problem in the future.

Cheers,

Chris Montgomery        [EMAIL PROTECTED]

Airtight Web Services   http://www.airtightweb.com
Web Development, Web Project Management, Software Sales
210-490-3249/888-745-7603

==^================================================================
This email was sent to: [email protected]

EASY UNSUBSCRIBE click here: http://topica.com/u/?bUrFMa.bV0Kx9
Or send an email to: [EMAIL PROTECTED]

T O P I C A -- Register now to manage your mail!
http://www.topica.com/partner/tag02/register
==^================================================================

Reply via email to