CSS Questions

  1. Does Freeway upload .css files to the server? The only one I see on my server folders is ie6.css.

  2. If I have a .css file how do I import it into Freeway. I know how to import styles from another freeway file, but not from a .css file.

OR

  1. If I have the script contents of a .css file—how do I get that in Freeway.

Thanks.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Does Freeway upload .css files to the server?

If you want it to. Use File>Document Setup and look under the Output Tab to enable the ‘External Stylesheets’ option.

If I have a .css file how do I import it into Freeway.

Several ways to do this. Link to the CSS in your Markup

link rel=“stylesheet” type=“text/css” href=“http://www.yoursite.com/yourstylesheet.css

Or use an action such as ‘ESS - Use External Stylesheet’

Or copy the style code and add it into Page>Html Markup in the Before section.

If I have the script contents of a .css file…

See above

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Of course that should be

<link rel=”stylesheet” type=”text/css” href=”http://www.yoursite.com/yourstylesheet.css”/>

freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Many thanks. Very succinct.


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Dave you said:
If you want it to. Use File>Document Setup and look under the Output Tab to enable the ‘External Stylesheets’ option.

But then what?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

BTW this:
Or copy the style code and add it into Page>Html Markup in the Before section.

didn’t work. :frowning:


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

didn’t work

You probably didn’t do it right.

Any style declarations have to be wrapped in opening and closing style tags

<style type="text/css">

styles declarations

</style>

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

BTW this: Or copy the style code and add it into Page>Html Markup in the Before section.

didn’t work.

Just to add to this - if you can post a link to an example online that you are working on then we can have a look at the underlying code and tell you why it ‘didn’t work’

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Then Freeway will write all of its style code into external stylesheets. Unless you enable this feature, Freeway will write only the styles needed by each page into the head element of that page. The IE6 shim is there to normalize features that creaky-old versions of IE get canonically wrong.

Walter

On Aug 17, 2013, at 11:00 PM, John Cooper wrote:

Dave you said:
If you want it to. Use File>Document Setup and look under the Output Tab to enable the ‘External Stylesheets’ option.

But then what?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options