On 22-Sep-2009, at 15:43, Pierre DeBois wrote:
>  My concern is that I open a HTML file, but I do not see the content  
> in the
> same appearance as with the CSS in place.

If you do not have the css file locally in the same relative location  
as on the server, then you will not see the css. There is a very  
simple kludge around this.

Change:
<head>
   <link rel="stylesheet" type="text/css" href="default.css" />
</head>

to
<head>
   <link rel="stylesheet" type="text/css" 
href="http://www.example.com/path/to/default.css 
" />
</head>

(obviously, change the URL to the URL of the css file you want to use)

Quick and dirty, but gets the job done.

If you are editing a site though, it makes sense to have ALL the files  
locally (or on a webdav mount) and in that case you would not need to  
make any changes to the source.


-- 
Procrastination is the art of keeping up with yesterday.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a feature request or would like to report a problem, 
please email "[email protected]" rather than posting to the group.
-~----------~----~----~----~------~----~------~--~---

Reply via email to