CSS calls from pages without <link />

G

Guest

Hello,

I made a web site in PHP. Pages sent to browsers are generated by PHP
scripts roughly as shown below:

LoadHeader1();
LoadCSS(); // here are the links to CSS files (<link />)
LoadHeader2();
DispUpdateTime(....);
LoadPage(....); // here are calls to CSS objects
LoadSignature();
LoadFooter();

Thus, they are valid, styles are recognized and applied.


But, I want the web site to be modified in FrontPage 2003.
So, I loaded all the web site into FrontPage.
When I open a page (html without links to CSS files but with calls to CSS
objects) in FrontPage, no graphics are applied (which is obvious).
How can I ask FrontPage to seek for styles in CSS files without adding any
line to the pages ?

Thank you

Guillaume
 
S

Stefan B Rusynko

If your CSS (links) are coming from a server side script they will never be rendered in FP
- FP does not parse any server side scripts

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Hello,
|
| I made a web site in PHP. Pages sent to browsers are generated by PHP
| scripts roughly as shown below:
|
| LoadHeader1();
| LoadCSS(); // here are the links to CSS files (<link />)
| LoadHeader2();
| DispUpdateTime(....);
| LoadPage(....); // here are calls to CSS objects
| LoadSignature();
| LoadFooter();
|
| Thus, they are valid, styles are recognized and applied.
|
|
| But, I want the web site to be modified in FrontPage 2003.
| So, I loaded all the web site into FrontPage.
| When I open a page (html without links to CSS files but with calls to CSS
| objects) in FrontPage, no graphics are applied (which is obvious).
| How can I ask FrontPage to seek for styles in CSS files without adding any
| line to the pages ?
|
| Thank you
|
| Guillaume
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top