Copy link to clipboard
Copied
The latest copy of DW is very unstable. It constantly crashes. Also when I click on one of my linked file such as .css or .js that file does not show properly. Please fix this edition of Dreamweaver.
You child page contains the same link path as your Template which does not look correct to me.
Assuming this is your site structure:
about.html
bio.html
index.html
-CSS
skeleton.css
base.css
custom.css
-Stylesheets
modulestylesheets.css
-Template
main.dwt
The path in your child pages should look like this css/base.css without the leading dots and slash.
How are you creating child pages? Did you go to File > New > Site Templates > Create? And then Save and name your newly create
...Copy link to clipboard
Copied
It runs well for me on Windows 7 and Windows 10.
Could you be a little more specific about what you mean by unstable, what you're seeing in dependent files, and your OS?
I bet the contributors here can help get you up and running with a little troubleshooting.
Copy link to clipboard
Copied
OSX Sierra 10.12.3
Unstable: It crashes often.
What I see in dependent files (code view): grey/nothing. A message saying, "file not on local disk", but the file is on my local disk. When I click on the "get" link, I get a message saying "the file is not in a defined site".
Thanks. Hope someone can help.
Copy link to clipboard
Copied
That error usually occurs when you haven't defined a site in the program, or are attempting to edit files that are linked externally. Even if you're just using DW for html emails, it really wants a Site Definition set up in order to function correctly.
Have you set one up yet?
...and is it selected in your Files window?
Copy link to clipboard
Copied
Thanks for your support, Jon.
I had the site defined, but I went back and re-defined it.
It seems to be working now. I will be using it all day. If I run into the problem again, I would like to repost.
Thanks again.
Copy link to clipboard
Copied
Still having the same issue.
When I opened up DW this morning. I got the same result as before.
I think my site settings are correct.
Here is a screen shot of my DW in split view of my custom.css.
Copy link to clipboard
Copied
What does the code for the link in your <head> section look like for the custom.css file?
Copy link to clipboard
Copied
@charset "UTF-8";
Copy link to clipboard
Copied
I'm sorry, maybe I wasn't clear enough, that is the character set declaration of your custom.css file.
What I want to see is how that custom.css file is actually linked in the <head> of your bio.htm file.
Copy link to clipboard
Copied
bio.htm is linked to my template.
Here is the head of the template:
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!-- TemplateBeginEditable name="doctitle" -->
<title></title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oswald|Open+Sans:400italic,600italic,700italic,400,700,600">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/skeleton.css">
<link rel="stylesheet" href="../css/layout.css">
<link rel="stylesheet" href="../css/custom.css">
<link href="../stylesheets/modulestylesheets.css" rel="stylesheet" type="text/css">
<link href="../bootstrap_css/bootstrap.css" rel="stylesheet" type="text/css">
<!-- JS
================================================== -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="/js/slider.js"></script>
<script type="text/javascript" src="../js/jquery-3.1.1.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
$(document).ready(function(){
// Code for Mobile Menu, shows up on small screen resolutions
$('.expand-menu').click(function(e){
e.preventDefault();
$(this).toggleClass('open');
if($('nav.small.top ul').is(':hidden')){
$('nav.small.top ul').slideDown();
}else{
$('nav.small.top ul').slideUp();
}
});
// --
// Script to init slider. You can edit it from "/js/slider.js"
$('.slider').startSlider();
// --
});
</script>
</head>
Copy link to clipboard
Copied
Thank you so much for your help.
DW is still crashing frequently.
I have to run, but will be back later for your reply.
Thank you again.
Copy link to clipboard
Copied
Though the Template info could be helpful, I really would like to see the links that DW is writing to the bio.htm file's <head> section.
Copy link to clipboard
Copied
Not certain I understand your request.
All my css links are in the template head (interior.dwt):
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oswald|Open+Sans:400italic,600italic,700italic,40 0,700,600">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/skeleton.css">
<link rel="stylesheet" href="../css/layout.css">
<link rel="stylesheet" href="../css/custom.css">
<link href="../stylesheets/modulestylesheets.css" rel="stylesheet" type="text/css">
<link href="../bootstrap_css/bootstrap.css" rel="stylesheet" type="text/css">
I don't have any links in the bio.html except for the link to the template (interior.dwt). <!-- InstanceBegin template="/Templates/Interior.dwt" codeOutsideHTMLIsLocked="false" -->
Here is my bio.html head:
<!DOCTYPE html>
<html lang="en"><!-- InstanceBegin template="/Templates/Interior.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!-- InstanceBeginEditable name="doctitle" --><title>About Catherine Pearson</title><!-- InstanceEndEditable --><!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oswald|Open+Sans:400italic,600italic,700italic,400,700,600">
<link rel="stylesheet" href="../css/base.css">
<link rel="stylesheet" href="../css/skeleton.css">
<link rel="stylesheet" href="../css/layout.css">
<link rel="stylesheet" href="../css/custom.css">
<link href="../stylesheets/modulestylesheets.css" rel="stylesheet" type="text/css">
<!-- JS
================================================== -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="/js/slider.js"></script>
<script type="text/javascript" src="../js/jquery-3.1.1.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
$(document).ready(function(){
// Code for Mobile Menu, shows up on small screen resolutions
$('.expand-menu').click(function(e){
e.preventDefault();
$(this).toggleClass('open');
if($('nav.small.top ul').is(':hidden')){
$('nav.small.top ul').slideDown();
}else{
$('nav.small.top ul').slideUp();
}
});
// --
// Script to init slider. You can edit it from "/js/slider.js"
$('.slider').startSlider();
// --
});
</script>
<script>
}
</script>
</head>
Hope this makes sense.
Copy link to clipboard
Copied
You child page contains the same link path as your Template which does not look correct to me.
Assuming this is your site structure:
about.html
bio.html
index.html
-CSS
skeleton.css
base.css
custom.css
-Stylesheets
modulestylesheets.css
-Template
main.dwt
The path in your child pages should look like this css/base.css without the leading dots and slash.
How are you creating child pages? Did you go to File > New > Site Templates > Create? And then Save and name your newly created child page?
Nancy
Copy link to clipboard
Copied
You nailed it. WOW. I can now see my linked files.
I am now wondering whether this will also fix my constantly crashing DW. ??
Thank you so much.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now