Forums / Setup & design / saving the page of the website

saving the page of the website

Author Message

M M

Wednesday 04 May 2005 6:32:05 am

HI All

When i'm trying to save as any page from my website all the css of this site doesn't appear as it's not convereted to the normal html code but instead it stays in the head section of the page in the ez code format
"
<style type="text/css">
@import url("/design/ar/stylesheets/ministries.css");
@import url("/design/ar/stylesheets/ministries2.css");

@import url("/design/base/stylesheets/site.css");
</style>
"

you can also see it when you make view source from the browser

So please if anyone knows anything about that issue please answer me

Thanks in advance

kracker (the)

Wednesday 04 May 2005 6:49:23 am

This is a browser / web user-agent issue.

The answer is that user-agents (from what i know, to date, at least) is that they all handle css style sheet imports using the "@import url(file.css)" the same way....

They ignore them, They don't download them when saving the web page. It's a bit of a negative feature. But it's the way they all work. Some people especially web page designers really like this features as it discourages stealing of web page designs....

Yet, don't loose hope, you can use the older and very much still supported alternate, instead:

<link href="file.css" rel="stylesheet" type="text/css">

cheers,
//kracker

Sole : Selling Live Water : Teepee on a highway blues

Member since: 2001.07.13 || http://ezpedia.se7enx.com/

M M

Wednesday 04 May 2005 7:06:15 am

thanks a lot :)