[Pro] CSS Files. Where are they?

Where do the Freeway Pro CSS files exists when they are uploaded to the server?


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

In the css folder

David

On 28 May 2012, at 20:50, “RavenManiac” email@hidden wrote:

Where do the Freeway Pro CSS files exists when they are uploaded to the server?


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

But is the CSS folder uploaded to the server when you publish and upload the files? I’m just trying to figure out how my webpages access the CSS folder online.


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

But is the CSS folder uploaded to the server when you publish and upload the files? I’m just trying to figure out how my webpages access the CSS folder online.

Yes if you are using external styles but bear in mind that by default the styling is inline ie within the page itself. If you look in the Head section of a published web page you will see all the styles declared there.

View Source with your Browser to check them out.

David


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

Look at the code in your page for…

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

David

On 28 May 2012, at 21:24, “RavenManiac” email@hidden wrote:

But is the CSS folder uploaded to the server when you publish and upload the files? I’m just trying to figure out how my webpages access the CSS folder online.


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

This is all that I could find in my page source code:


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

This is all that I could find in my page source code:

Because you are not using external style sheets.

D


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

Look in the section of your source for…

> >

Everything between those two markers is your internal stylesheet, and will
mostly look like this…

body { font-style: italic; }

The only other place to find CSS code beside the external and internal
stylesheets, is inline with the HTML code in the section of your
page code. Like this…

:slight_smile:


Ernie Simpson


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

How and why would I want to create external stylesheets?


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

I just found the checkbox to turn on External stylesheets. So why wouldn’t I want to do that?


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

Often when I’m checking styles, especially tricky ones, it’s easier to find
them in the source html head (internal stylesheet) so I can see the html
and css together.

Also, any style in the internal stylesheet will over-ride the same style
attribute in the external stylesheet. This may come in handy if you want to
over-ride the external stylesheet on a particular page. In any case, it is
good to know how the Cascade Order in CSS works.

Also also, I might create a page in Freeway Pro, then open the generated
code in an app like Coda to tweak my styling right there before going back
Freeway to finish it. Having the style code right there is a time saver.


Ernie Simpson

On Mon, May 28, 2012 at 6:27 PM, RavenManiac email@hidden wrote:

I just found the checkbox to turn on External stylesheets. So why wouldn’t
I want to do that?


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