Date:  12/08/2002 11:19:50 PM Msg ID:  001094
From:  Cas Nuy Thread:  001091
Subject:  Re: Style Sheets Not Having Any Effect
Don,
 
you have to deal with that through vfp code, like the following :
<style type="text/css">
<!--
<%=FILETOSTR('css\StyleSheet2.css')%>
-->
</style>
 
Cas
Sent by Don Dascher on 12/08/2002 08:32:13 AM:
I am investigating the use of a style sheet within some HTML I generate within a FWX file.  Seems simple but for some reason I am not getting an effect.   I am using a commercially created style sheet where there is clearly a definition of the <H1> tag which should result in the text being centered but it does not center it.
 
The CSS file is in the same directory as this FWX file.
 
This is my FWX code below ...
 
Any idea why this might not work ?
 
 
<HTML>
<HEAD>
<TITLE>EXPENSE CATEGORIES</TITLE>
<LINK rel="stylesheet" type="text/css" href="mystyle.css">
</HEAD>
<BODY>

<FORM ACTION="cats.fwx" method="POST">
<p>
<H1>E X P E N S E - C A T E G O R I E S</H1><p>
etc ...