Is it possible to have a template editable region inside of script tags? E.g.
<script>
$(function() {
<!-- TemplateBeginEditable name="javascript" -->
<!-- TemplateEndEditable -->
Is it possible to have a template editable region inside of script tags? E.g.
<script>
$(function() {
<!-- TemplateBeginEditable name="javascript" -->
<!-- TemplateEndEditable -->
I have a month to month subscription and i want to cancel. The website show how to do it but then it is not there when I go to my account.
How to add vertical lines and position them like those seen near the bottom at this site.
http://www.threebirdnest.com/pages/about-us
This will divide 3 columns.
David
Why can't I edit .html file in Dreamweaver CS 5.5 when it is not attached to a template?
I have always been able to edit it every other time I have opened the file (since I built the site over two years ago).
Now each time I try to edit it in Design mode, no matter where I click in the file the whole page gets a dark grey overlay and I can't get a curser.
I am still able to edit the code directly but I do not want to be restricted.
The last thing I did the last time I opened the file was paste Google Analytics code in just before the </head> tag. I did this to all the files on the site but this is the only one that isn't working. I have tried taking out this code but it makes no difference.
I am using a 6 month old Macbook pro.
Can anyone help me?
I am trying to install the FlexNav Jquery Plugin for a menubar. All apears to work/look correct in designview, EXCEPT in the browser:
Like in deskview, the submenu when viewed in the browser is stuck in down postion. It will not go up or down (respons to hover)?
Similarly, when resized in browser, all appears correct, EXCEPT then menu items will not display under the menu (believe because the menu is not 'dropping down' as it should.?)
Everything seems to be working correct, just can not get the submenu(s) to respond (to hover), stuck in full browser view, down, (won't contract), and resized browser to mobile view, the Menu Tilte shows, but will not reveal te menu items.
Any help would be greatly appreciated:
Here is the code:
<!doctype html>
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
<!--[if IE 7]> <html class="ie7 oldie"> <![endif]-->
<!--[if IE 8]> <html class="ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Untitled Document</title>
<link href="css/core/boilerplate.css" rel="stylesheet" type="text/css">
<link href="css/core/styles.css" rel="stylesheet" type="text/css">
<link href="css/flexnav//flexnav.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="css/flexnav/page.css" media="screen, projection" rel="stylesheet" type="text/css">
<link href="css/fonts/font-awesome.css" media="screen, projection" rel="stylesheet" type="text/css">
<!--
To learn more about the conditional comments around the html tags at the top of the file:
paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
Do the following if you're using your customized build of modernizr (http://www.modernizr.com/):
* insert the link to your js here
* remove the link below to the html5shiv
* add the "no-js" class to the html tags at the top
* you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
-->
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="css/core/respond.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript">
//$.noConflict();
</script>
<script src="js/flexnav/jquery.flexnav.js" type="text/javascript"></script>
<script src="Gruntfile.js" type="text/javascript"></script>
<script type="text/javascript" src="js/flexnav/jquery.flexnav.min.js"></script>
<script type="text/javascript">
var Video = {};
Video.videoControls = function() {
var $v = $('#video'),
$play_button = $(".controls button");
$v.get(0).volume=0;
$play_button.hide();
$play_button.on("click", function() {
if ( $(this).hasClass("play") ) {
$v.get(0).play();
$(this).removeClass("play").addClass("pause");
} else if ( $(this).hasClass("pause") ) {
$v.get(0).pause();
$(this).removeClass("pause").addClass("play");
}
});
if ($v.attr('controls') !== 'true') {
$v.attr('controls', 'true');
}
$v.get(0).play();
$v.removeAttr('controls');
$v.on("timeupdate", function() {
if ($v.get(0).duration > 0) {
setTimeout(function() {
$play_button.fadeIn('slow');
}, 2000);
}
});
};
jQuery(document).ready(function($) {
// initialize video
Video.videoControls();
// initialize FlexNav
$(".flexnav").flexNav();
});
</script>
</head>
<body>
<div class="gridContainer clearfix">
<div id="top">This is the content for Layout Div Tag "top"</div>
<div id="header">This is the content for Layout Div Tag "header"</div>
<div id="navigation"> <div class="menu-button">Menu</div>
<nav>
<ul data-breakpoint="800" class="flexnav">
<li><a href="">Item 1</a>
<ul>
<li> <a href="#content">Sub 1 Item 1</a></li>
<li><a href="">Sub 1 Item 2</a></li>
<li><a href="">Sub 1 Item 3</a></li>
<li><a href="">Sub 1 Item 4</a></li>
</ul>
</li>
<li><a href="">Item 2</a>
<ul>
<li><a href="">Sub 1 Item 1</a></li>
<li><a href="">Sub 1 Item 2</a>
<ul>
<li><a href="">Sub 2 Item 1</a></li>
<li><a href="">Sub 2 Item 2</a></li>
<li><a href="">Sub 2 Item 3</a></li>
</ul>
</li>
<li><a href="">Sub 1 Item 3</a>
<ul>
<li><a href="">Sub 2 Item 1</a></li>
<li><a href="">Sub 2 Item 2</a>
<ul>
<li><a href="">Sub 3 Item 1</a></li>
<li><a href="">Sub 3 Item 2</a></li>
<li><a href="">Sub 3 Item 3</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li><a href="">Item 3</a>
<ul>
<li><a href="">Sub 1 Item 1</a></li>
<li><a href="">Sub 1 Item 2</a></li>
<li><a href="">Sub 1 Item 3</a></li>
</ul>
</li>
<li><a href="">Item 4</a>
<ul>
<li><a href="">Sub 1 Item 1</a></li>
<li><a href="">Sub 1 Item 2</a></li>
<li><a href="">Sub 1 Item 3</a></li>
</ul>
</li>
<li><a href="">Item 5</a>
<ul>
<li><a href="">Sub 1 Item 1</a></li>
<li><a href="">Sub 1 Item 2</a></li>
<li><a href="">Sub 1 Item 3</a></li>
</ul>
</li>
</ul>
</nav></div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript">
//$.noConflict();
</script>
<script src="js/flexnav/jquery.flexnav.js" type="text/javascript"></script>
<script src="Gruntfile.js" type="text/javascript"></script>
<script type="text/javascript" src="js/flexnav/jquery.flexnav.min.js"></script>
<script type="text/javascript">
var Video = {};
Video.videoControls = function() {
var $v = $('#video'),
$play_button = $(".controls button");
$v.get(0).volume=0;
$play_button.hide();
$play_button.on("click", function() {
if ( $(this).hasClass("play") ) {
$v.get(0).play();
$(this).removeClass("play").addClass("pause");
} else if ( $(this).hasClass("pause") ) {
$v.get(0).pause();
$(this).removeClass("pause").addClass("play");
}
});
if ($v.attr('controls') !== 'true') {
$v.attr('controls', 'true');
}
$v.get(0).play();
$v.removeAttr('controls');
$v.on("timeupdate", function() {
if ($v.get(0).duration > 0) {
setTimeout(function() {
$play_button.fadeIn('slow');
}, 2000);
}
});
};
jQuery(document).ready(function($) {
// initialize video
Video.videoControls();
// initialize FlexNav
$(".flexnav").flexNav();
});
</script>
</body>
</html>
Here is the FlexNav site:
http://jasonweaver.name/lab/flexiblenavigation/
Also, I linked to the Gruntfile.js shown above. What is this? Do I need it in the Site Directory. Do I need to link to it in my HTML?
Thank you for any help
DW 2014.1; Windows 7
After the latest DW upgrade from 2014 to 2014.1 I am unable to paste text copied from a source outside DW into either the code window or the design view window. In both cases the behavior is the same: any text selected is deleted but nothing is inserted.
I have confirmed the desired text is in the Windows copy buffer by pasting it into a number of other applications. I am able to paste text copied from DW into other applications.
Fortunately, I still have DW CC installed, otherwise, this would be a MAJOR problem.
Configuration: Dreamweaver CC 2014.1; Windows 7
I have quite a few sites defined in Dreamweaver and would like to define the folder locations using environment variables so thst if I decide to reorganize my disk (again) I can just redefine the variable instead of having to modify each of the site definitions. For example, instead of W:\dw\site\, I would like to specify %dw_root%\dw\site\ (where dw_root is defined as "W:"
Attempting to save a configuration with this filespec fails with the error: The local site folder path must be absolute.
I copied the path from the DW configuration dialog box and pasted it into a DOS window as the filespec of a DIR command to confirm the syntax was valid.
Does anyone know if there is a way to make this work?
Thanks.
I know there is a simple fix to this but I can't figure it out. I have a website that has a few pages created in Dreamweaver CS6. I few weeks back, the site and the webpages looked good. Then a few days ago, I logged into Dreamweaver and began to update a new page for our current winners, and this is when something went wrong.
In design mode, my web page looks like its supposed to, background image and all the image attachments including the Logo are where they are suppose to be. However, in Live mode my page is all white, and all the attached images are not viewable. The attachment images have a ? mark in the center of each box where an image would be placed.
I now have a webpage that up until a week or so ago worked and now, whenever someone views that page, all they see is a white screen.
Can someone please assist me in getting this issue resolved.
Thanks!
Joann
In Dreamweaver 2014.1, if one is using fluid grid webpages, many editing features are missing because only "Live View" is provided. For example, one cannot run Spell Check for any webpages that are using fluid grid. This is a terrible oversight by the developers. Also, in Live View, it is much more difficult to swipe through text in order to copy/paste across webpages. This needs to be fixed.
I suggest that the ability to switch to Design View be always allowed regardless of the design of the webpage.
This issue has been discussed in the Dreamweaver forums, (View the full discussion).
I've been struggling to start using my local test server again. It was working about a year ago when I last used it, but now, I get only a blank page back when I do the browser test (F12).
It took awhile to get Wamp to just start up (icon was orange). Turned out to be a Port 80 conflict issue. Eventually changed Skype port and Wamp now starts fine (icon green).
I've documented all the settings in both Wamp and DW to make sure everything is pointing to the right place, but still only get blank pages back when viewing in Firefox.
For some additional testing I made a copy of the html file on the test server but still got the same results.
Any ideas on what to try next?
Thanks
Tom
im trying to make some changes on our website (oilfiltercrushers.com). Im using DW CC 2014, 8.8, HP Pavion pc. The problems include:trying to move an image farther to the left & also to remove too much vertical space, trying to remove "AAAs tht show up on a webpage table even they don't show on the local file that was put, a webpage that I cant see on the website even though it was put & appears in the remote files folder. Id be happy to pay someone to help me fix these problems. Thanx, Paul (p765@wi.rr.com, 4146514636)
Yes, this topic has been written about before. Actually for the last few YEARS.
I even had the opportunity to do an Adobe Connect with an Adobe Engineer about the issue, where he SAW the issue first hand.
Here we are now at Dreamweaver CC 2014.1 and the problem is worse then ever. If you are in another applications such as Photoshop, Illustrator, InDesign, etc and you change to Dreamweaver, as we all do many times a day, then try and switch websites you get the dreaded "Interacting with Server" message. Why has this not been fixed yet? This has been an issue since DW CS5. Yet no solution comes forward. Adobe keeps updating the app, but this never gets fixed.
I have to click sometimes 10-15 times to switch between websites. It is utterly maddening. And kills my workflow. ADOBE DO SOMETHING!
I've been building a site on dreamweaver and I have had it up and running for several weeks. A few days ago I found that I was not able to put files up that I had made changes to. If I put a new file up, it goes up just fine...but say I make a change to my index.html file and try to put it up to replace the old one, nothing happens. Dreamweaver says it is putting the file, but the old one is still in place. This is a new problem; I was able to make changes easily a few days ago.
I know I could just delete the index.html file and then put it up since putting up new files works, but I know this shouldn't be happening and if there is something going on I need to address I'd like to figure out what it is.
The only thing I think it might be is possibly the rss feed script or site map script that I have running on my remote server. I believe I purchased them and put them up a little over a week ago and they are set to create new files every seven days, so the timing suggests that these scripts may plausibly be involved in this issue. Aside from that, I have no logical idea why the put action stopped working out of the blue for established files.
Any suggestions are welcomed! Thanks!
I upgraded my Dreamweaver CC 2014 to Dreamweaver CC 2014.1 and now it will not launch. It acts like it want to, then nothing.
I am running Yosemite Build 5.
Anyone else having this problem or have any idea how to fix it... like NOW?
Thanks....
Hello,
I am relatively new to web design. After designing a few simple websites for myself, that I could put on my portfolio I decided to design another website. It all went well, until I stumbled upon a weird problem: hyperlinks in the banner do not work. Hyperlinks in the menu, as well as other page parts work perfectly fine. Except the banner, I could set whatever text to be a hyperlink, but all it does is simply add the characteristics of it such as the underline and blue color. But... it won't work how it is supposed to be.
If I copy/cut the element out of the banner, it will work without a flaw.
I would also like to add, that I am using z-index of -1 to put it under the logo which is above both the menu and the banner.
HTML:
CSS:
.banner { background-color: #fbfbff; height: 360px; position: relative; bottom: 164px; z-index: -1; border-radius: 10px; } .newtrucks { padding-left: 58px; padding-right: 550px; } .fastbutton { left: 457px; top: 24px; position: relative; } .fastreadm { color: #FFFFFF; font-family: Trebuchet MS; font-size: 12px; left: 472px; position: relative; top: -6px; } a.fastreadm { text-decoration: none; } a.fastreadm:hover { color: #FDC1D1; }
Thanks for any help!!!
Like others have mentioned before - Dreamweaver CC 2014 continues to ask for site passwords with every "put" command - if the app is closed and restarted. It does maintain them within the same session. I am on a Mac running Yosemite.
I have renamed the permissions file as suggested in previous posts - this did not work.
I have been given the responsibility to update/edit a website. It is hosted on dotster and I believe was created using dreamweaver software. I am unfamiliar with this. I tried to use wordpress to edit it - but the dotster helpline is saying that this will not work.
My question is: what do I download and how do I get it to edit the website?
Hello,
I am fairly new to web design, and I usually stumble upon little, silly problems. I am looking for someone who I could ask for help at anytime.
For help, I can help with basic errands web-design based. I could set up a web-site template, do simple coding and really anything within HTML & CSS for a bit of help.
My email: mattszumilo@gmail.com
I just don't wanna have to post 15 questions a day on a forum, on which I am not sure if I will get a response from.
Thank you!
Hi,
I have used flexisel slider from this website
http://9bitstudios.github.io/flexisel/
My site link :http://bhc.edu.in/TESTSITE/slider.html
After I have included this slider's scripts, the flexisel slider works well.But the camera slider and news ticker stopped working.
There is some conflict with jQuery Library for Camera Slider
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
and jQuery Library for Flexisel Slider....
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
Please help me.